pythonPackages.pyscreenshot: init at 0.5.1
This commit is contained in:
parent
1b5df99e7a
commit
30f8203dd5
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue