mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 14:57:28 +03:00
Merge pull request #99292 from lsix/pyscreenshot-add-missing-dep
pythonPackages.pyscreenshot: add missing pillow dependency
This commit is contained in:
commit
d83af32dd6
@ -6,6 +6,7 @@
|
|||||||
, entrypoint2
|
, entrypoint2
|
||||||
, jeepney
|
, jeepney
|
||||||
, mss
|
, mss
|
||||||
|
, pillow
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -20,6 +21,7 @@ buildPythonPackage rec {
|
|||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
EasyProcess
|
EasyProcess
|
||||||
entrypoint2
|
entrypoint2
|
||||||
|
pillow
|
||||||
] ++ lib.optionals (isPy3k) [
|
] ++ lib.optionals (isPy3k) [
|
||||||
jeepney
|
jeepney
|
||||||
mss
|
mss
|
||||||
@ -28,6 +30,8 @@ buildPythonPackage rec {
|
|||||||
# recursive dependency on pyvirtualdisplay
|
# recursive dependency on pyvirtualdisplay
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "pyscreenshot" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "python screenshot";
|
description = "python screenshot";
|
||||||
homepage = "https://github.com/ponty/pyscreenshot";
|
homepage = "https://github.com/ponty/pyscreenshot";
|
||||||
|
Loading…
Reference in New Issue
Block a user