nixpkgs/pkgs/development/python-modules/dependency-injector/default.nix

33 lines
798 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, isPy3k, six, unittest2, pyyaml, flask }:
let
testPath =
if isPy3k
then "test_*_py3.py"
else "test_*_py2_py3.py";
in
buildPythonPackage rec {
pname = "dependency-injector";
version = "4.4.1";
src = fetchPypi {
inherit pname version;
sha256 = "8c3d9ec6502e2d8051dcdf2603cccb4a87da292a1770e9854814fe928fa4a9b1";
};
propagatedBuildInputs = [ six ];
checkInputs = [ unittest2 pyyaml flask ];
checkPhase = ''
unit2 discover -s tests/unit -p "${testPath}"
'';
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 ];
};
}