mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-15 03:07:53 +00:00
Merge pull request #261583 from natsukium/python311Packages-pilkit-update
python311Packages.pilkit: unstable-2022-02-17 -> 3.0
This commit is contained in:
commit
014ba34da3
@ -5,23 +5,28 @@
|
||||
, pillow
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pilkit";
|
||||
version = "unstable-2022-02-17";
|
||||
format = "setuptools";
|
||||
version = "3.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "matthewwithanm";
|
||||
repo = pname;
|
||||
rev = "09ffa2ad33318ae5fd3464655c14c7f01ffc2097";
|
||||
hash = "sha256-jtnFffKr0yhSv2jBmXzPa6iP2r41MbmGukfmnvgABhk=";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-NmD9PFCkz3lz4AnGoQUpkt35q0zvDVm+kx7lVDFBcHk=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pillow
|
||||
];
|
||||
|
||||
@ -44,7 +49,7 @@ buildPythonPackage rec {
|
||||
meta = with lib; {
|
||||
description = "A collection of utilities and processors for the Python Imaging Library";
|
||||
homepage = "https://github.com/matthewwithanm/pilkit/";
|
||||
license = licenses.bsd0;
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ domenkozar ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user