python-packages objgraph: init at 2.0.1
This commit is contained in:
parent
0392197226
commit
88d444b36f
@ -8850,6 +8850,27 @@ let
|
||||
maintainers = with maintainers; [ phreedom thoughtpolice ];
|
||||
};
|
||||
});
|
||||
|
||||
objgraph = buildPythonPackage rec {
|
||||
name = "objgraph-${version}";
|
||||
version = "2.0.1";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/o/objgraph/${name}.tar.gz";
|
||||
sha256 = "841de52715774ec1d0e97d9b4462d6e3e10406155f9b61f54ba7db984c45442a";
|
||||
};
|
||||
|
||||
# Tests fail with PyPy.
|
||||
disabled = isPyPy;
|
||||
|
||||
propagatedBuildInputs = with self; [pkgs.graphviz];
|
||||
|
||||
meta = {
|
||||
description = "Draws Python object reference graphs with graphviz";
|
||||
homepage = http://mg.pov.lt/objgraph/;
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
|
||||
odo = buildPythonPackage rec {
|
||||
name = "odo-${version}";
|
||||
|
Loading…
Reference in New Issue
Block a user