2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-28 15:22:32 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, testtools
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "testscenarios";
|
2018-11-04 10:35:18 +00:00
|
|
|
version = "0.5.0";
|
2018-10-28 15:22:32 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-04 10:35:18 +00:00
|
|
|
sha256 = "c257cb6b90ea7e6f8fef3158121d430543412c9a87df30b5dde6ec8b9b57a2b6";
|
2018-10-28 15:22:32 +00:00
|
|
|
};
|
|
|
|
|
2018-11-04 10:35:18 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.cfg \
|
|
|
|
--replace "buffer = 1" "" \
|
|
|
|
--replace "catch = 1" ""
|
|
|
|
'';
|
|
|
|
|
2018-10-28 15:22:32 +00:00
|
|
|
propagatedBuildInputs = [ testtools ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-28 15:22:32 +00:00
|
|
|
description = "A pyunit extension for dependency injection";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://pypi.python.org/pypi/testscenarios";
|
2018-10-28 15:22:32 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|