pythonPackages.pyscreenshot: init at 0.5.1

This commit is contained in:
Chris Ostrouchov 2019-07-25 10:45:10 -04:00 committed by Marcus Boyd
parent 1b5df99e7a
commit 30f8203dd5
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
, EasyProcess
}:
buildPythonPackage rec {
pname = "pyscreenshot";
version = "0.5.1";
src = fetchPypi {
inherit pname version;
sha256 = "19ec6d17a61c0cd4e7fcf3ab2685598a54b53dc781755393cc5f76dcb7bf359c";
};
propagatedBuildInputs = [
EasyProcess
];
# recursive dependency on pyvirtualdisplay
doCheck = false;
meta = with lib; {
description = "python screenshot";
homepage = "https://github.com/ponty/pyscreenshot";
license = licenses.bsd3;
maintainers = with maintainers; [ costrouc ];
};
}

View File

@ -1101,6 +1101,8 @@ in {
pyschedule = callPackage ../development/python-modules/pyschedule { };
pyscreenshot = callPackage ../development/python-modules/pyscreenshot { };
pyside = callPackage ../development/python-modules/pyside {
inherit (pkgs) mesa;
};