Merge pull request #174018 from fabaff/datadiff-bump

python310Packages.datadiff: 1.1.6 -> 2.0.0
This commit is contained in:
Fabian Affolter 2022-06-02 15:13:46 +02:00 committed by GitHub
commit ba78bf3b2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,25 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, nose
, pythonOlder
}:
buildPythonPackage rec {
pname = "datadiff";
version = "1.1.6";
version = "2.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "f1402701063998f6a70609789aae8dc05703f3ad0a34882f6199653654c55543";
hash = "sha256-VASUQKiW3lJH7i57eqVCX5OayDLDftshAfjTA26Jyqg=";
};
buildInputs = [ nose ];
# Tests are not part of the PyPI releases
doCheck = false;
pythonImportsCheck = [
"datadiff"
];
meta = with lib; {
description = "DataDiff";
description = "Library to provide human-readable diffs of Python data structures";
homepage = "https://sourceforge.net/projects/datadiff/";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}