Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / nose-timer / default.nix
blob51b4bf80d0e8c87ec6bc2cffa27e81018e992f43
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , nose
5 , mock
6 , parameterized
7 , termcolor
8 }:
10 buildPythonPackage rec {
11   pname = "nose-timer";
12   version = "1.0.1";
13   format = "setuptools";
15   src = fetchFromGitHub {
16     owner = "mahmoudimus";
17     repo = pname;
18     rev = "v${version}";
19     sha256 = "0xsai2l5i1av62y9y0q63wy2zk27klmf2jizgghhxg2y8nfa8x3x";
20   };
22   propagatedBuildInputs = [ nose ];
24   nativeCheckInputs = [
25     mock
26     nose
27     parameterized
28     termcolor
29   ];
31   checkPhase = ''
32     runHook preCheck
33     nosetests --verbosity 2 tests
34     runHook postCheck
35   '';
37   pythonImportsCheck = [ "nosetimer" ];
39   meta = with lib; {
40     description = "A timer plugin for nosetests";
41     homepage = "https://github.com/mahmoudimus/nose-timer";
42     license = licenses.mit;
43     maintainers = with maintainers; [ doronbehar ];
44   };