nixos/alsa: reintroduce hardware.alsa.enablePersistence (#373529)
[NixPkgs.git] / pkgs / development / python-modules / testscenarios / default.nix
blobf46f4e2f2c1ace0d8c07e9ba444d533208b6fec0
2   lib,
3   buildPythonPackage,
4   fetchPypi,
6   # build-system
7   pbr,
8   setuptools,
10   # dependencies
11   testtools,
13   # tests
14   python,
17 buildPythonPackage rec {
18   pname = "testscenarios";
19   version = "0.5.0";
20   pyproject = true;
22   src = fetchPypi {
23     inherit pname version;
24     sha256 = "c257cb6b90ea7e6f8fef3158121d430543412c9a87df30b5dde6ec8b9b57a2b6";
25   };
27   postPatch = ''
28     substituteInPlace setup.cfg \
29       --replace "buffer = 1" "" \
30       --replace "catch = 1" ""
31   '';
33   nativeBuildInputs = [
34     pbr
35     setuptools
36   ];
38   propagatedBuildInputs = [
39     pbr
40     testtools
41   ];
43   checkPhase = ''
44     runHook preCheck
46     ${python.interpreter} -m testtools.run testscenarios.tests.test_suite
48     runHook postCheck
49   '';
51   meta = with lib; {
52     description = "Pyunit extension for dependency injection";
53     homepage = "https://github.com/testing-cabal/testscenarios";
54     license = licenses.asl20;
55   };