Merge pull request #17567 from auntieNeo/pycallgraph

pythonPackages.pycallgraph: init at 1.0.1
This commit is contained in:
Frederik Rietdijk 2016-08-13 08:51:38 +02:00 committed by GitHub
commit 5f2b125fd1

View File

@ -7780,6 +7780,29 @@ in modules // {
};
};
pycallgraph = buildPythonPackage rec {
name = "pycallgraph-${version}";
version = "1.0.1";
src = pkgs.fetchurl {
url = mirror://pypi/p/pycallgraph/pycallgraph-1.0.1.tar.gz;
sha256 = "0w8yr43scnckqcv5nbyd2dq4kpv74ai856lsdsf8iniik07jn9mi";
};
buildInputs = with self; [ pytest ];
# Tests do not work due to this bug: https://github.com/gak/pycallgraph/issues/118
doCheck = false;
meta = {
homepage = http://pycallgraph.slowchop.com;
description = "Call graph visualizations for Python applications";
maintainers = with maintainers; [ auntie ];
license = licenses.gpl2;
platform = platforms.all;
};
};
pycares = buildPythonPackage rec {
name = "pycares-${version}";
version = "1.0.0";