stripe-cli: 1.23.3 -> 1.23.5 (#375724)
[NixPkgs.git] / pkgs / development / python-modules / celery-types / default.nix
blob53ed8e4f2512afbce3f551d1d0365aa18d9b69a7
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   poetry-core,
6   pythonOlder,
7   typing-extensions,
8 }:
10 buildPythonPackage rec {
11   pname = "celery-types";
12   version = "0.22.0";
13   pyproject = true;
15   disabled = pythonOlder "3.10";
17   src = fetchPypi {
18     pname = "celery_types";
19     inherit version;
20     hash = "sha256-DsrS+lpu3tCh+Rnl4eOBzC/wY1/ksh21O0ZhtodtWzA=";
21   };
23   nativeBuildInputs = [ poetry-core ];
25   propagatedBuildInputs = [ typing-extensions ];
27   doCheck = false;
29   meta = with lib; {
30     description = "PEP-484 stubs for Celery";
31     homepage = "https://github.com/sbdchd/celery-types";
32     license = licenses.mit;
33     maintainers = with maintainers; [ elohmeier ];
34   };