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