python3Packages.celery-types: init at 0.19.0
This commit is contained in:
parent
9331708da6
commit
173988fa9a
38
pkgs/development/python-modules/celery-types/default.nix
Normal file
38
pkgs/development/python-modules/celery-types/default.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, poetry-core
|
||||||
|
, typing-extensions
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "celery-types";
|
||||||
|
version = "0.19.0";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
hash = "sha256-1OLUJxsuxG/sCKDxKiU4i7o5HyaJdIW8rPo8UofMI28=";
|
||||||
|
};
|
||||||
|
|
||||||
|
patchPhase = ''
|
||||||
|
substituteInPlace pyproject.toml \
|
||||||
|
--replace "poetry.masonry.api" "poetry.core.masonry.api"
|
||||||
|
'';
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
typing-extensions
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
poetry-core
|
||||||
|
];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "PEP-484 stubs for Celery";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ elohmeier ];
|
||||||
|
};
|
||||||
|
}
|
||||||
@ -1739,6 +1739,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
celery-singleton = callPackage ../development/python-modules/celery-singleton { };
|
celery-singleton = callPackage ../development/python-modules/celery-singleton { };
|
||||||
|
|
||||||
|
celery-types = callPackage ../development/python-modules/celery-types { };
|
||||||
|
|
||||||
cement = callPackage ../development/python-modules/cement { };
|
cement = callPackage ../development/python-modules/cement { };
|
||||||
|
|
||||||
cemm = callPackage ../development/python-modules/cemm { };
|
cemm = callPackage ../development/python-modules/cemm { };
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user