33 lines
769 B
Nix
33 lines
769 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, six, unittest2 }:
|
|
|
|
let
|
|
testPath =
|
|
if isPy3k
|
|
then "test_*_py3.py"
|
|
else "test_*_py2_py3.py";
|
|
in
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dependency-injector";
|
|
version = "3.14.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "ecac135cc4e5824b6bf8242679fc7225f44885877677701da6de7703f060f518";
|
|
};
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
checkInputs = [ unittest2 ];
|
|
|
|
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 ];
|
|
};
|
|
}
|