Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / nose-cprof / default.nix
blob58ffc4a25c680bc071fcdcb74ef8eba527347ca8
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , nose
5 }:
8 buildPythonPackage rec {
9   pname = "nose-cprof";
10   version = "0.2.1";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "0178834759b63dc50388444d4ff8d1ae84e1ba110bb167419afee6bf4699b119";
16   };
18   buildInputs = [ nose ];
20   meta = with lib; {
21     description = "A python nose plugin to profile using cProfile rather than the default Hotshot profiler";
22     homepage = "https://github.com/msherry/nose-cprof";
23     license = licenses.bsd0;
24   };