5e9e1146e1
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
41 lines
728 B
Nix
41 lines
728 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy3k
|
|
, easyprocess
|
|
, entrypoint2
|
|
, jeepney
|
|
, mss
|
|
, pillow
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyscreenshot";
|
|
version = "3.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-jA6T8K72amv+Vahqv87WvTlq5LT2zB428EoorSYlWU0=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
easyprocess
|
|
entrypoint2
|
|
pillow
|
|
] ++ lib.optionals (isPy3k) [
|
|
jeepney
|
|
mss
|
|
];
|
|
|
|
# recursive dependency on pyvirtualdisplay
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "pyscreenshot" ];
|
|
|
|
meta = with lib; {
|
|
description = "python screenshot";
|
|
homepage = "https://github.com/ponty/pyscreenshot";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|