1{ stdenv, buildPythonPackage, fetchPypi, six }: 2 3buildPythonPackage rec { 4 pname = "dependency-injector"; 5 version = "3.13.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0bmcgdfjavgxdzkb904q968ig1x44arvpj2m4rpm5nc9vhhgq43q"; 10 }; 11 12 # TODO: Enable tests after upstream merges https://github.com/ets-labs/python-dependency-injector/pull/204 13 doCheck = false; 14 15 propagatedBuildInputs = [ six ]; 16 17 meta = with stdenv.lib; { 18 description = "Dependency injection microframework for Python"; 19 homepage = https://github.com/ets-labs/python-dependency-injector; 20 license = licenses.bsd3; 21 maintainers = with maintainers; [ gerschtli ]; 22 }; 23}