mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pythonPackages.pyscreenshot: add missing dependencies
This commit is contained in:
parent
ce9b73c281
commit
5bcc4b27f9
1 changed files with 8 additions and 0 deletions
|
@ -1,7 +1,11 @@
|
||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, isPy3k
|
||||||
, EasyProcess
|
, EasyProcess
|
||||||
|
, entrypoint2
|
||||||
|
, jeepney
|
||||||
|
, mss
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -15,6 +19,10 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
EasyProcess
|
EasyProcess
|
||||||
|
entrypoint2
|
||||||
|
] ++ lib.optionals (isPy3k) [
|
||||||
|
jeepney
|
||||||
|
mss
|
||||||
];
|
];
|
||||||
|
|
||||||
# recursive dependency on pyvirtualdisplay
|
# recursive dependency on pyvirtualdisplay
|
||||||
|
|
Loading…
Reference in a new issue