python311Packages.celery-types: add homepage

- disable on unsupported Python releases
This commit is contained in:
Fabian Affolter 2023-08-08 17:05:15 +02:00 committed by GitHub
parent 173988fa9a
commit 26eb7ba4f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, poetry-core
, pythonOlder
, typing-extensions
}:
@ -10,6 +11,8 @@ buildPythonPackage rec {
version = "0.19.0";
format = "pyproject";
disabled = pythonOlder "3.10";
src = fetchPypi {
inherit pname version;
hash = "sha256-1OLUJxsuxG/sCKDxKiU4i7o5HyaJdIW8rPo8UofMI28=";
@ -32,6 +35,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "PEP-484 stubs for Celery";
homepage = "https://github.com/sbdchd/celery-types";
license = licenses.mit;
maintainers = with maintainers; [ elohmeier ];
};