Files
nixpkgs/pkgs/development/python-modules/pyscreenshot/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

46 lines
766 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
isPy3k,
easyprocess,
entrypoint2,
jeepney,
mss,
pillow,
}:
buildPythonPackage rec {
pname = "pyscreenshot";
version = "3.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "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 = [ ];
};
}