blob: 193c6a71df978550b1fec6cb82395884323f9a7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
typing-extensions,
}:
buildPythonPackage rec {
pname = "celery-types";
version = "0.23.0";
pyproject = true;
src = fetchPypi {
pname = "celery_types";
inherit version;
hash = "sha256-QC7QVVrqPNXh5iSPRjLk8Y7sjtskNRc/nm3AhEn6EB4=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [ typing-extensions ];
doCheck = false;
meta = {
description = "PEP-484 stubs for Celery";
homepage = "https://github.com/sbdchd/celery-types";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|