Merge pull request #65316 from kalbasit/nixpkgs_fix-moto-collision

moto: fix colliding dependencies
This commit is contained in:
Wael Nasreddine 2019-07-25 09:00:32 -07:00 committed by GitHub
commit 6b89e87a23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,13 +5,17 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "jsondiff"; pname = "jsondiff";
version = "1.1.2"; version = "1.2.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "7e18138aecaa4a8f3b7ac7525b8466234e6378dd6cae702b982c9ed851d2ae21"; sha256 = "00v3689175aqzdscrxpffm712ylp8jvcpqdg51ca22ni6721p51l";
}; };
postPatch = ''
sed -e "/'jsondiff=jsondiff.cli:main_deprecated',/d" -i setup.py
'';
# No tests # No tests
doCheck = false; doCheck = false;
@ -20,5 +24,4 @@ buildPythonPackage rec {
homepage = https://github.com/ZoomerAnalytics/jsondiff; homepage = https://github.com/ZoomerAnalytics/jsondiff;
license = lib.licenses.mit; license = lib.licenses.mit;
}; };
} }