pycallgraph: init at 1.0.1

This commit is contained in:
Jonathan Glines 2016-08-06 15:51:35 -06:00
parent dddf84ff61
commit 6a5b81ae5e

View File

@ -7751,6 +7751,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";