mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
Added nose-cprof for profiling
This commit is contained in:
parent
5ff9c0c067
commit
b9d933ba24
@ -3040,6 +3040,22 @@ pythonPackages = python.modules // rec {
|
||||
buildInputs = [ nose ];
|
||||
};
|
||||
|
||||
nose-cprof = buildPythonPackage rec {
|
||||
name = "nose-cprof-0.1-0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/n/nose-cprof/${name}.tar.gz";
|
||||
md5 = "5db27c3b8f01915335ae6fc5fd3afd44";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "A python nose plugin to profile using cProfile rather than the default Hotshot profiler.";
|
||||
};
|
||||
|
||||
buildInputs = [ nose ];
|
||||
};
|
||||
|
||||
|
||||
notify = pkgs.stdenv.mkDerivation (rec {
|
||||
name = "python-notify-0.1.1";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user