Skip to content

Commit

Permalink
python3Packages.xmldiff: 2.4 -> 2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
SFrijters committed Jan 19, 2023
1 parent 8db958d commit ec628a1
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions pkgs/development/python-modules/xmldiff/default.nix
Original file line number Diff line number Diff line change
@@ -1,24 +1,35 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, lxml
, setuptools
, six
, pytestCheckHook
}:

buildPythonPackage rec {
pname = "xmldiff";
version = "2.4";
version = "2.5";

disabled = pythonOlder "3.7";

src = fetchPypi {
inherit pname version;
sha256 = "sha256-Bb6iDOHyyWeGg7zODDupmB+H2StwnRkOAYvL8Efsz2M=";
sha256 = "sha256-bF8wvGXOboHZpwo8sCafe6YYUv1sqnoPv8Dt8zs8txc=";
};

propagatedBuildInputs = [ lxml setuptools six ];
propagatedBuildInputs = [
lxml
setuptools
];

checkInputs = [
pytestCheckHook
];

checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"xmldiff"
];

meta = with lib; {
description = "Creates diffs of XML files";
Expand Down

0 comments on commit ec628a1

Please sign in to comment.