Merge pull request #161520 from r-ryantm/auto-update/python3.10-simple_di
python310Packages.simple-di: 0.1.4 -> 0.1.5
This commit is contained in:
commit
f4ac264f7d
1 changed files with 10 additions and 7 deletions
|
@ -8,13 +8,16 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "simple_di";
|
pname = "simple-di";
|
||||||
version = "0.1.4";
|
version = "0.1.5";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
pname = "simple_di";
|
||||||
sha256 = "2667f2b9095e86c7726b3853c30b37f527f7d247282c7dd0b3428a7fb5d1a8a9";
|
inherit version;
|
||||||
|
hash = "sha256-GSuZne5M1PsRpdhhFlyq0C2PBhfA+Ab8Wwn5BfGgPKA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -31,10 +34,10 @@ buildPythonPackage rec {
|
||||||
# pypi distribution contains no tests
|
# pypi distribution contains no tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "Simple dependency injection library";
|
description = "Simple dependency injection library";
|
||||||
homepage = "https://github.com/bentoml/simple_di";
|
homepage = "https://github.com/bentoml/simple_di";
|
||||||
license = lib.licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with lib.maintainers; [ sauyon ];
|
maintainers = with maintainers; [ sauyon ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue