mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.dependency-injector: init at 3.13.1 (#45871)
This commit is contained in:
parent
9a56eee0b1
commit
e6a3ad775f
2 changed files with 25 additions and 0 deletions
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi, six }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "dependency-injector";
|
||||
version = "3.13.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0bmcgdfjavgxdzkb904q968ig1x44arvpj2m4rpm5nc9vhhgq43q";
|
||||
};
|
||||
|
||||
# TODO: Enable tests after upstream merges https://github.com/ets-labs/python-dependency-injector/pull/204
|
||||
doCheck = false;
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Dependency injection microframework for Python";
|
||||
homepage = https://github.com/ets-labs/python-dependency-injector;
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ gerschtli ];
|
||||
};
|
||||
}
|
|
@ -246,6 +246,8 @@ in {
|
|||
|
||||
dendropy = callPackage ../development/python-modules/dendropy { };
|
||||
|
||||
dependency-injector = callPackage ../development/python-modules/dependency-injector { };
|
||||
|
||||
dbf = callPackage ../development/python-modules/dbf { };
|
||||
|
||||
dbfread = callPackage ../development/python-modules/dbfread { };
|
||||
|
|
Loading…
Reference in a new issue