python3.pkgs.nose-timer: init at 1.0.0
This commit is contained in:
parent
2edd4edcb9
commit
cd5b560541
|
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
|
@ -4050,6 +4050,8 @@ in {
|
|||
|
||||
nose-focus = callPackage ../development/python-modules/nose-focus { };
|
||||
|
||||
nose-timer = callPackage ../development/python-modules/nose-timer { };
|
||||
|
||||
nosejs = callPackage ../development/python-modules/nosejs { };
|
||||
|
||||
nose-of-yeti = callPackage ../development/python-modules/nose-of-yeti { };
|
||||
|
|
Loading…
Reference in New Issue