python.pkgs.backports_unittest-mock: init at 1.3
This commit is contained in:
parent
c6539df7ab
commit
69c4724dd4
2 changed files with 24 additions and 0 deletions
|
@ -0,0 +1,22 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchPypi, setuptools_scm, mock }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "backports.unittest_mock";
|
||||||
|
version = "1.3";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0xdkx5wf5a2w2zd2pshk7z2cvbv6db64c1x6v9v1a18ja7bn9nf6";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ mock ];
|
||||||
|
|
||||||
|
buildInputs = [ setuptools_scm ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Provides a function install() which makes the mock module";
|
||||||
|
homepage = https://github.com/jaraco/backports.unittest_mock;
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
|
@ -1259,6 +1259,8 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
backports_unittest-mock = callPackage ../development/python-modules/backports_unittest-mock {};
|
||||||
|
|
||||||
babelfish = buildPythonPackage rec {
|
babelfish = buildPythonPackage rec {
|
||||||
version = "0.5.5";
|
version = "0.5.5";
|
||||||
name = "babelfish-${version}";
|
name = "babelfish-${version}";
|
||||||
|
|
Loading…
Reference in a new issue