blob: b8d32effc09834cee33fdccf583a3ea8bab1363a (
plain) (
blame)
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
33
34
35
36
37
38
39
|
{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "simple-di";
version = "0.1.5";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
pname = "simple_di";
inherit version;
hash = "sha256-GSuZne5M1PsRpdhhFlyq0C2PBhfA+Ab8Wwn5BfGgPKA=";
};
propagatedBuildInputs = [
setuptools
typing-extensions
];
pythonImportsCheck = [ "simple_di" ];
# pypi distribution contains no tests
doCheck = false;
meta = with lib; {
description = "Simple dependency injection library";
homepage = "https://github.com/bentoml/simple_di";
license = licenses.asl20;
maintainers = with maintainers; [ sauyon ];
};
}
|