Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 320dd7718a68
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 07ee10a99ac8
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 29, 2018

  1. python.pkgs.datadog: 0.23.0 -> 0.25.0

    Robert Schütz committed Nov 29, 2018
    Copy the full SHA
    07ee10a View commit details
Showing with 6 additions and 7 deletions.
  1. +6 −7 pkgs/development/python-modules/datadog/default.nix
13 changes: 6 additions & 7 deletions pkgs/development/python-modules/datadog/default.nix
Original file line number Diff line number Diff line change
@@ -4,22 +4,21 @@

buildPythonPackage rec {
pname = "datadog";
version = "0.23.0";
version = "0.25.0";

src = fetchPypi {
inherit pname version;
sha256 = "6ed9aec2b3a26722b74465c2ed36d2efdb9c9fac1a07a84d81fa2fc0cfa66ae4";
sha256 = "e71f9024fb0b968bd704178c7e48fa41ce728281cc6913994db5e065596cddf1";
};

postPatch = ''
find . -name '*.pyc' -exec rm {} \;
'';

propagatedBuildInputs = [ decorator requests simplejson ];

checkInputs = [ nose mock ];

# v0.20.0 tests are nondeterministic:
# test_send_batch_metrics: https://hydra.nixos.org/build/74920933
# test_timed_decorator_threaded: https://hydra.nixos.org/build/74328993
doCheck = false;

meta = with lib; {
description = "The Datadog Python library";
license = licenses.bsd3;