1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 pythonOlder,
6}:
7
8buildPythonPackage {
9 pname = "polygon3";
10 version = "3.0.9";
11 format = "setuptools";
12
13 disabled = pythonOlder "3.8";
14
15 src = fetchFromGitHub {
16 owner = "jraedler";
17 repo = "Polygon3";
18 rev = "7b2091f77741fa1d94251979bc4a4f2676b4d2d1";
19 hash = "sha256-jXtjEzjWwMoVgrHWsK8brSN6TQRxIPRjUaRiLBXYLcI=";
20 };
21
22 # malloc error on running the tests
23 # python3.10(30620,0x115b74600) malloc: *** error for object 0x10d6db580: pointer being freed was not allocated
24 # > python3.10(30620,0x115b74600) malloc: *** set a breakpoint in malloc_error_break to debug
25 # > /nix/store/vbi8rnz0k3jyh4h4g16bbkchdd8mnxw7-setuptools-check-hook/nix-support/setup-hook: line 4: 30620 Abort trap: 6 /nix/store/5cxanhipcbfxnrqgw2qsr3zqr4z711bj-python3-3.10.12/bin/python3.10 nix_run_setup test
26 doCheck = false;
27
28 meta = with lib; {
29 description = "Polygon is a python package that handles polygonal shapes in 2D";
30 homepage = "https://github.com/jraedler/Polygon3";
31 license = licenses.asl20;
32 maintainers = with maintainers; [ happysalada ];
33 };
34}