nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python310Packages.transitions: fix darwin build

authored by

Stanisław Pitucha and committed by
Robert Schütz
06e61dbe d3ea3da7

+9
+9
pkgs/development/python-modules/transitions/default.nix
··· 1 1 { lib 2 + , stdenv 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , pythonAtLeast ··· 38 37 export FONTCONFIG_FILE=${fontconfig.out}/etc/fonts/fonts.conf 39 38 export HOME=$TMPDIR 40 39 ''; 40 + 41 + # upstream issue https://github.com/pygraphviz/pygraphviz/issues/441 42 + pytestFlagsArray = lib.optionals stdenv.isDarwin [ 43 + "--deselect=tests/test_pygraphviz.py::PygraphvizTest::test_binary_stream" 44 + "--deselect=tests/test_pygraphviz.py::PygraphvizTest::test_diagram" 45 + "--deselect=tests/test_pygraphviz.py::TestPygraphvizNested::test_binary_stream" 46 + "--deselect=tests/test_pygraphviz.py::TestPygraphvizNested::test_diagram" 47 + ]; 41 48 42 49 pythonImportsCheck = [ 43 50 "transitions"