mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
j2cli: fix missing dependency on setuptools
Was getting ``` ... import pkg_resources ImportError: No module named pkg_resources ```
This commit is contained in:
parent
c05bdeb23b
commit
47430e5e23
|
@ -4,6 +4,7 @@
|
||||||
, nose
|
, nose
|
||||||
, jinja2
|
, jinja2
|
||||||
, pyyaml
|
, pyyaml
|
||||||
|
, setuptools
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -16,7 +17,7 @@ buildPythonPackage rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ nose ];
|
checkInputs = [ nose ];
|
||||||
propagatedBuildInputs = [ jinja2 pyyaml ];
|
propagatedBuildInputs = [ jinja2 pyyaml setuptools ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://github.com/kolypto/j2cli";
|
homepage = "https://github.com/kolypto/j2cli";
|
||||||
|
|
Loading…
Reference in a new issue