Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / testscenarios / default.nix
blob8df35ac4b88958695f12fe70d11278998244da23
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , testtools
5 }:
7 buildPythonPackage rec {
8   pname = "testscenarios";
9   version = "0.5.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "c257cb6b90ea7e6f8fef3158121d430543412c9a87df30b5dde6ec8b9b57a2b6";
14   };
16   postPatch = ''
17     substituteInPlace setup.cfg \
18       --replace "buffer = 1" "" \
19       --replace "catch = 1" ""
20   '';
22   propagatedBuildInputs = [ testtools ];
24   meta = with lib; {
25     description = "A pyunit extension for dependency injection";
26     homepage = "https://pypi.python.org/pypi/testscenarios";
27     license = licenses.asl20;
28   };