mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
Merge pull request #65316 from kalbasit/nixpkgs_fix-moto-collision
moto: fix colliding dependencies
This commit is contained in:
commit
6b89e87a23
|
@ -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;
|
||||
|
||||
|
@ -20,5 +24,4 @@ buildPythonPackage rec {
|
|||
homepage = https://github.com/ZoomerAnalytics/jsondiff;
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue