about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/nose-timer/default.nix
blob: c93f5bda9838a58010bf0ff0c7459aa60d648387 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ buildPythonPackage, fetchPypi, lib, nose, }:

buildPythonPackage rec {
  pname = "nose-timer";
  version = "1.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "09hwjwbczi06bfqgiylb2yxs5h88jdl26zi1fdqxdzvamrkksf2c";
  };

  propagatedBuildInputs = [ nose ];

  meta = with lib; {
    homepage = "https://github.com/mahmoudimus/nose-timer";
    license = licenses.mit;
    description = "A timer plugin for nosetests (how much time does every test take?)";
    maintainers = with maintainers; [ doronbehar ];
  };
}