2019-11-21 02:53:28 +01:00
|
|
|
{ lib
|
2018-10-17 00:15:17 +02:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2019-11-21 02:53:28 +01:00
|
|
|
, isPy27
|
2018-10-17 00:15:17 +02:00
|
|
|
, funcsigs
|
|
|
|
, six
|
|
|
|
, pbr
|
|
|
|
, python
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "mock";
|
2019-10-24 08:47:39 +02:00
|
|
|
version = "3.0.5";
|
2018-10-17 00:15:17 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 08:47:39 +02:00
|
|
|
sha256 = "83657d894c90d5681d62155c82bda9c1187827525880eda8ff5df4ec813437c3";
|
2018-10-17 00:15:17 +02:00
|
|
|
};
|
|
|
|
|
2019-11-21 02:53:28 +01:00
|
|
|
propagatedBuildInputs = [ six pbr ] ++ lib.optionals isPy27 [ funcsigs ];
|
2018-10-17 00:15:17 +02:00
|
|
|
|
2019-02-04 09:18:17 +01:00
|
|
|
# On PyPy for Python 2.7 in particular, Mock's tests have a known failure.
|
|
|
|
# Mock upstream has a decoration to disable the failing test and make
|
|
|
|
# everything pass, but it is not yet released. The commit:
|
|
|
|
# https://github.com/testing-cabal/mock/commit/73bfd51b7185#diff-354f30a63fb0907d4ad57269548329e3L12
|
|
|
|
doCheck = !(python.isPyPy && python.isPy27);
|
|
|
|
|
2018-10-17 00:15:17 +02:00
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} -m unittest discover
|
|
|
|
'';
|
|
|
|
|
2019-11-21 02:53:28 +01:00
|
|
|
meta = with lib; {
|
2018-10-17 00:15:17 +02:00
|
|
|
description = "Mock objects for Python";
|
|
|
|
homepage = http://python-mock.sourceforge.net/;
|
2019-11-21 02:53:28 +01:00
|
|
|
license = licenses.bsd2;
|
2018-10-17 00:15:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|