1{ lib
2, buildPythonPackage
3, fetchPypi
4, EasyProcess
5}:
6
7buildPythonPackage rec {
8 pname = "pyscreenshot";
9 version = "0.6";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "7322ad9454652b1702a3689646ce53ef01ed2b14869ea557030bd4e03a06fc0e";
14 };
15
16 propagatedBuildInputs = [
17 EasyProcess
18 ];
19
20 # recursive dependency on pyvirtualdisplay
21 doCheck = false;
22
23 meta = with lib; {
24 description = "python screenshot";
25 homepage = "https://github.com/ponty/pyscreenshot";
26 license = licenses.bsd3;
27 maintainers = with maintainers; [ costrouc ];
28 };
29}