about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/Polygon3/default.nix
blob: e85eb209343d2d817f84923f3266daa0184e44b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
}:
let
  pname = "Polygon3";
  version = "3.0.9";
in
buildPythonPackage {
  inherit pname version;
  format = "setuptools";

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "jraedler";
    repo = pname;
    rev = "7b2091f77741fa1d94251979bc4a4f2676b4d2d1";
    hash = "sha256-jXtjEzjWwMoVgrHWsK8brSN6TQRxIPRjUaRiLBXYLcI=";
  };

  # malloc error on running the tests
  #  python3.10(30620,0x115b74600) malloc: *** error for object 0x10d6db580: pointer being freed was not allocated
  # > python3.10(30620,0x115b74600) malloc: *** set a breakpoint in malloc_error_break to debug
  # > /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
  doCheck = false;

  meta = with lib; {
    description = "Polygon is a python package that handles polygonal shapes in 2D";
    homepage = "https://github.com/jraedler/Polygon3";
    license = licenses.asl20;
    maintainers = with maintainers; [ happysalada ];
  };
}