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