forked from mirrors/nixpkgs
yle-dl: add setuptools dependency
yle-dl was failing with the following error: ImportError: No module named pkg_resources Adding setuptools to propagatedBuildInputs fixes this issue.
This commit is contained in:
parent
e1eedf29e5
commit
080da6a65f
|
@ -11,7 +11,9 @@ pythonPackages.buildPythonApplication rec {
|
|||
sha256 = "0k93p9csyjm0w33diwl5s22kzs3g78jl3n9k8nxxpqrybfjl912f";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [ lxml pyamf pycrypto requests future ffmpeg ];
|
||||
propagatedBuildInputs = with pythonPackages; [
|
||||
lxml pyamf pycrypto requests future ffmpeg setuptools
|
||||
];
|
||||
pythonPath = [ rtmpdump php ];
|
||||
|
||||
doCheck = false; # tests require network access
|
||||
|
|
Loading…
Reference in a new issue