mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-02 05:49:22 +03:00
python310Packages.deepdiff: 5.7.0 -> 5.8.2
This commit is contained in:
parent
1bd9ff368f
commit
53466092bf
1 changed files with 11 additions and 5 deletions
|
@ -8,19 +8,20 @@
|
||||||
, numpy
|
, numpy
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, pyyaml
|
, pyyaml
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "deepdiff";
|
pname = "deepdiff";
|
||||||
version = "5.7.0";
|
version = "5.8.2";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
# pypi source does not contain all fixtures required for tests
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "seperman";
|
owner = "seperman";
|
||||||
repo = "deepdiff";
|
repo = "deepdiff";
|
||||||
# 5.7.0 release not tagged https://github.com/seperman/deepdiff/issues/300
|
rev = "v${version}";
|
||||||
rev = "f2ffdb83b2993f4f0bb7e854620f0acd0bf6339e";
|
|
||||||
hash = "sha256-0UBx7sH2iMrLVl5FtHNTwoecLHi8GbInn75G3FSg4gk=";
|
hash = "sha256-0UBx7sH2iMrLVl5FtHNTwoecLHi8GbInn75G3FSg4gk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -48,10 +49,15 @@ buildPythonPackage rec {
|
||||||
pyyaml
|
pyyaml
|
||||||
];
|
];
|
||||||
|
|
||||||
|
disabledTests = [
|
||||||
|
# Assertion issue with the decimal places
|
||||||
|
"test_get_numeric_types_distance"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Deep Difference and Search of any Python object/data";
|
description = "Deep Difference and Search of any Python object/data";
|
||||||
homepage = "https://github.com/seperman/deepdiff";
|
homepage = "https://github.com/seperman/deepdiff";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = [ maintainers.mic92 ];
|
maintainers = with maintainers; [ mic92 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue