Skip to content

Commit

Permalink
Merge pull request #65316 from kalbasit/nixpkgs_fix-moto-collision
Browse files Browse the repository at this point in the history
moto: fix colliding dependencies
  • Loading branch information
kalbasit committed Jul 25, 2019
2 parents 7b82853 + d99c6cc commit 6b89e87
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions pkgs/development/python-modules/jsondiff/default.nix
Expand Up @@ -5,13 +5,17 @@

buildPythonPackage rec {
pname = "jsondiff";
version = "1.1.2";
version = "1.2.0";

src = fetchPypi {
inherit pname version;
sha256 = "7e18138aecaa4a8f3b7ac7525b8466234e6378dd6cae702b982c9ed851d2ae21";
sha256 = "00v3689175aqzdscrxpffm712ylp8jvcpqdg51ca22ni6721p51l";
};

postPatch = ''
sed -e "/'jsondiff=jsondiff.cli:main_deprecated',/d" -i setup.py
'';

# No tests
doCheck = false;

Expand All @@ -20,5 +24,4 @@ buildPythonPackage rec {
homepage = https://github.com/ZoomerAnalytics/jsondiff;
license = lib.licenses.mit;
};

}
}

0 comments on commit 6b89e87

Please sign in to comment.