ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / nose-cprof / default.nix
blobf4959ec7be78d275badec8e74b8294efbe251d8a
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , nose
5 }:
8 buildPythonPackage rec {
9   pname = "nose-cprof";
10   version = "0.2.1";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "0178834759b63dc50388444d4ff8d1ae84e1ba110bb167419afee6bf4699b119";
15   };
17   buildInputs = [ nose ];
19   meta = with lib; {
20     description = "A python nose plugin to profile using cProfile rather than the default Hotshot profiler";
21     homepage = "https://github.com/msherry/nose-cprof";
22     license = licenses.bsd0;
23   };