3
0
Fork 0
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:
Jaakko Luttinen 2020-01-16 13:09:01 +02:00
parent e1eedf29e5
commit 080da6a65f
No known key found for this signature in database
GPG key ID: 7B1CE13152E6B964

View file

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