1
0
Fork 1
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:
Manuel Mendez 2020-04-02 15:35:09 -04:00 committed by Jon
parent c05bdeb23b
commit 47430e5e23

View file

@ -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";