about summary refs log tree commit diff
path: root/pkgs/development/python-modules/celery-types
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-08-08 17:05:15 +0200
committerGitHub <noreply@github.com>2023-08-08 17:05:15 +0200
commit26eb7ba4f9bb812b77e754c6f77081c9cac4391b (patch)
treee9650171946d628b7d5b1c8cf50b2bcb795c7e50 /pkgs/development/python-modules/celery-types
parent173988fa9a5958b7f05e33ccb2c3857cfaf32e6b (diff)
python311Packages.celery-types: add homepage
- disable on unsupported Python releases
Diffstat (limited to 'pkgs/development/python-modules/celery-types')
-rw-r--r--pkgs/development/python-modules/celery-types/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/celery-types/default.nix b/pkgs/development/python-modules/celery-types/default.nix
index afa96788b4ef0..753d7fcc677bb 100644
--- a/pkgs/development/python-modules/celery-types/default.nix
+++ b/pkgs/development/python-modules/celery-types/default.nix
@@ -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 ];
   };