nixpkgs/pkgs/development/python-modules/pilkit/default.nix
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

49 lines
958 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, mock
, pillow
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "pilkit";
version = "unstable-2022-02-17";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "matthewwithanm";
repo = pname;
rev = "09ffa2ad33318ae5fd3464655c14c7f01ffc2097";
hash = "sha256-jtnFffKr0yhSv2jBmXzPa6iP2r41MbmGukfmnvgABhk=";
};
buildInputs = [
pillow
];
nativeCheckInputs = [
mock
pytestCheckHook
];
postPatch = ''
substituteInPlace tox.ini \
--replace " --cov --cov-report term-missing:skip-covered" ""
'';
pythonImportsCheck = [
"pilkit"
];
meta = with lib; {
description = "A collection of utilities and processors for the Python Imaging Libary";
homepage = "https://github.com/matthewwithanm/pilkit/";
license = licenses.bsd0;
maintainers = with maintainers; [ domenkozar ];
};
}