python3.pkgs.nose-timer: init at 1.0.0

This commit is contained in:
Doron Behar
2020-10-08 11:31:39 +03:00
committed by Frederik Rietdijk
parent 2edd4edcb9
commit cd5b560541
2 changed files with 22 additions and 0 deletions

View File

@@ -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 ];
};
}