mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
python.pkgs.objgraph: fix build
Fixes https://github.com/NixOS/nixpkgs/issues/52518.
This commit is contained in:
parent
6972c433ab
commit
407f9ba5c9
@ -1,8 +1,9 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pkgs
|
||||
, isPyPy
|
||||
, graphviz
|
||||
, mock
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -17,7 +18,9 @@ buildPythonPackage rec {
|
||||
# Tests fail with PyPy.
|
||||
disabled = isPyPy;
|
||||
|
||||
propagatedBuildInputs = [pkgs.graphviz];
|
||||
propagatedBuildInputs = [ graphviz ];
|
||||
|
||||
checkInputs = [ mock ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Draws Python object reference graphs with graphviz";
|
||||
|
Loading…
Reference in New Issue
Block a user