pythonPackages.nose-cprof: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-17 01:31:36 -04:00
committed by Frederik Rietdijk
parent 648a03cc7c
commit 76eea7cf64
2 changed files with 26 additions and 15 deletions

View File

@@ -0,0 +1,25 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, nose
}:
buildPythonPackage rec {
pname = "nose-cprof";
version = "0.1.4";
src = fetchPypi {
inherit pname version;
sha256 = "0ayy5mbjly9aa9dkgpz0l06flspnxmnj6wxdl6zr59byrrr8fqhw";
};
buildInputs = [ nose ];
meta = with stdenv.lib; {
description = "A python nose plugin to profile using cProfile rather than the default Hotshot profiler";
homepage = https://github.com/msherry/nose-cprof;
license = licenses.bsd0;
};
}