mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
pycallgraph: init at 1.0.1
This commit is contained in:
parent
dddf84ff61
commit
6a5b81ae5e
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user