xmldiff: add dependency and change buildInputs to propagatedBuildInputs (#172839)

main
Anatolii Prylutskyi 2 years ago committed by GitHub
parent 2dcb64eefa
commit 64a6ffb999
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      pkgs/tools/text/xml/xmldiff/default.nix

@ -2,6 +2,7 @@
, buildPythonApplication , buildPythonApplication
, fetchFromGitHub , fetchFromGitHub
, lxml , lxml
, setuptools
, six , six
}: }:
@ -16,8 +17,9 @@ buildPythonApplication rec {
hash = "sha256-xqudHYfwOce2C0pcFzId0JDIIC6R5bllmVKsH+CvTdE="; hash = "sha256-xqudHYfwOce2C0pcFzId0JDIIC6R5bllmVKsH+CvTdE=";
}; };
buildInputs = [ propagatedBuildInputs = [
lxml lxml
setuptools
six six
]; ];
@ -36,6 +38,6 @@ buildPythonApplication rec {
readable diffs in those situations. readable diffs in those situations.
''; '';
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ AndersonTorres ]; maintainers = with maintainers; [ AndersonTorres anpryl ];
}; };
} }

Loading…
Cancel
Save