File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
pkgs/development/python-modules/matplotlib-venn Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 11{
22 lib ,
3+ stdenv ,
34 fetchPypi ,
45 buildPythonPackage ,
56 setuptools ,
67 matplotlib ,
78 numpy ,
89 scipy ,
10+ shapely ,
911 pytestCheckHook ,
1012} :
1113
1214buildPythonPackage rec {
13- version = "1.1.1" ;
1415 pname = "matplotlib-venn" ;
16+ version = "1.1.1" ;
1517
1618 pyproject = true ;
1719
@@ -26,6 +28,12 @@ buildPythonPackage rec {
2628 matplotlib
2729 numpy
2830 scipy
31+ shapely
32+ ] ;
33+
34+ disabledTests = [
35+ # See https://github.com/konstantint/matplotlib-venn/issues/85
36+ "matplotlib_venn.layout.venn3.cost_based.LayoutAlgorithm"
2937 ] ;
3038
3139 nativeCheckInputs = [ pytestCheckHook ] ;
@@ -36,5 +44,6 @@ buildPythonPackage rec {
3644 changelog = "https://github.com/konstantint/matplotlib-venn/releases/tag/${ version } " ;
3745 license = lib . licenses . mit ;
3846 maintainers = with lib . maintainers ; [ moraxyc ] ;
47+ broken = stdenv . hostPlatform . isDarwin ; # https://github.com/konstantint/matplotlib-venn/issues/87
3948 } ;
4049}
You can’t perform that action at this time.
0 commit comments