mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +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
|
||||
, jinja2
|
||||
, pyyaml
|
||||
, setuptools
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -16,7 +17,7 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
checkInputs = [ nose ];
|
||||
propagatedBuildInputs = [ jinja2 pyyaml ];
|
||||
propagatedBuildInputs = [ jinja2 pyyaml setuptools ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/kolypto/j2cli";
|
||||
|
|
Loading…
Reference in a new issue