about summary refs log tree commit diff
path: root/pkgs/tools/text/xml
diff options
context:
space:
mode:
authorAnatolii Prylutskyi <anpryl@gmail.com>2022-05-19 15:39:42 +0300
committerGitHub <noreply@github.com>2022-05-19 14:39:42 +0200
commit64a6ffb999dd286b627be8eb52773791e7795c2e (patch)
tree5a86af91737f16172f7390be7de5556038b3a2cc /pkgs/tools/text/xml
parent2dcb64eefab1e3841b98b8256a2685a4a80a1009 (diff)
xmldiff: add dependency and change buildInputs to propagatedBuildInputs (#172839)
Diffstat (limited to 'pkgs/tools/text/xml')
-rw-r--r--pkgs/tools/text/xml/xmldiff/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/text/xml/xmldiff/default.nix b/pkgs/tools/text/xml/xmldiff/default.nix
index 5814435e111b9..d9dbd70b6483c 100644
--- a/pkgs/tools/text/xml/xmldiff/default.nix
+++ b/pkgs/tools/text/xml/xmldiff/default.nix
@@ -2,6 +2,7 @@
 , buildPythonApplication
 , fetchFromGitHub
 , lxml
+, setuptools
 , six
 }:
 
@@ -16,8 +17,9 @@ buildPythonApplication rec {
     hash = "sha256-xqudHYfwOce2C0pcFzId0JDIIC6R5bllmVKsH+CvTdE=";
   };
 
-  buildInputs = [
+  propagatedBuildInputs = [
     lxml
+    setuptools
     six
   ];
 
@@ -36,6 +38,6 @@ buildPythonApplication rec {
       readable diffs in those situations.
     '';
     license = licenses.mit;
-    maintainers = with maintainers; [ AndersonTorres ];
+    maintainers = with maintainers; [ AndersonTorres anpryl ];
   };
 }