mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
xmldiff: add dependency and change buildInputs to propagatedBuildInputs (#172839)
This commit is contained in:
parent
2dcb64eefa
commit
64a6ffb999
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue