Files
nixpkgs/pkgs/development/python-modules/pyscreeze/default.nix
T
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

38 lines
880 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pillow
, xlib
, xvfb-run
, scrot
}:
buildPythonPackage rec {
pname = "PyScreeze";
version = "0.1.26";
src = fetchFromGitHub {
owner = "asweigart";
repo = "pyscreeze";
rev = "28ab707dceecbdd135a9491c3f8effd3a69680af";
sha256 = "sha256-gn3ydjf/msdhIhngGlhK+jhEyFy0qGeDr58E7kM2YZs=";
};
pythonImportsCheck = [ "pyscreeze" ];
nativeCheckInputs = [ scrot xlib xvfb-run ];
checkPhase = ''
python -m unittest tests.test_pillow_unavailable
xvfb-run python -m unittest tests.test_pyscreeze
'';
propagatedBuildInputs = [
pillow
];
meta = with lib; {
description = "PyScreeze is a simple, cross-platform screenshot module for Python 2 and 3.";
homepage = "https://github.com/asweigart/pyscreeze";
license = licenses.bsd3;
maintainers = with maintainers; [ lucasew ];
};
}