ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pilkit / default.nix
blob49a070006671bea73a26a14db5e1a6b144cfd492
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , mock
5 , pillow
6 , pytestCheckHook
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "pilkit";
12   version = "unstable-2022-02-17";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchFromGitHub {
18     owner = "matthewwithanm";
19     repo = pname;
20     rev = "09ffa2ad33318ae5fd3464655c14c7f01ffc2097";
21     hash = "sha256-jtnFffKr0yhSv2jBmXzPa6iP2r41MbmGukfmnvgABhk=";
22   };
24   buildInputs = [
25     pillow
26   ];
28   checkInputs = [
29     mock
30     pytestCheckHook
31   ];
33   postPatch = ''
34     substituteInPlace tox.ini \
35       --replace " --cov --cov-report term-missing:skip-covered" ""
36   '';
38   pythonImportsCheck = [
39     "pilkit"
40   ];
42   meta = with lib; {
43     description = "A collection of utilities and processors for the Python Imaging Libary";
44     homepage = "https://github.com/matthewwithanm/pilkit/";
45     license = licenses.bsd0;
46     maintainers = with maintainers; [ domenkozar ];
47   };