about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyscreenshot/default.nix
blob: 9e9d15e52956af6796a19ec67990e8c1ff02a9b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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 ];
  };
}