python3.pkgs.deepdiff: init at 4.0.9
This commit is contained in:
parent
595f379983
commit
b23b1e3d7c
2 changed files with 46 additions and 0 deletions
44
pkgs/development/python-modules/deepdiff/default.nix
Normal file
44
pkgs/development/python-modules/deepdiff/default.nix
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, mock
|
||||||
|
, jsonpickle
|
||||||
|
, ordered-set
|
||||||
|
, numpy
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "deepdiff";
|
||||||
|
version = "4.0.9";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "5e2343398e90538edaa59c0c99207e996a3a834fdc878c666376f632a760c35a";
|
||||||
|
};
|
||||||
|
|
||||||
|
# # Extra packages (may not be necessary)
|
||||||
|
checkInputs = [
|
||||||
|
mock
|
||||||
|
numpy
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
disabledTests = [
|
||||||
|
# skipped tests require murmur module
|
||||||
|
"test_prep_str_murmur3_64bit"
|
||||||
|
"test_prep_str_murmur3_128bit"
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
jsonpickle
|
||||||
|
ordered-set
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Deep Difference and Search of any Python object/data";
|
||||||
|
homepage = "https://github.com/seperman/deepdiff";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.mic92 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -500,6 +500,8 @@ in {
|
||||||
|
|
||||||
braintree = callPackage ../development/python-modules/braintree { };
|
braintree = callPackage ../development/python-modules/braintree { };
|
||||||
|
|
||||||
|
deepdiff = callPackage ../development/python-modules/deepdiff { };
|
||||||
|
|
||||||
django-sesame = callPackage ../development/python-modules/django-sesame { };
|
django-sesame = callPackage ../development/python-modules/django-sesame { };
|
||||||
|
|
||||||
breathe = callPackage ../development/python-modules/breathe { };
|
breathe = callPackage ../development/python-modules/breathe { };
|
||||||
|
|
Loading…
Reference in a new issue