Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pyvoro / default.nix
blob5c17554935d2e50bc7200c4a8c7e67ac311624b1
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   version = "1.3.2";
8   format = "setuptools";
9   pname = "pyvoro";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "f31c047f6e4fc5f66eb0ab43afd046ba82ce247e18071141791364c4998716fc";
14   };
16   # No tests in package
17   doCheck = false;
19   meta = with lib; {
20     homepage = "https://github.com/joe-jordan/pyvoro";
21     description = "2D and 3D Voronoi tessellations: a python entry point for the voro++ library";
22     license = licenses.mit;
23     maintainers = [ ];
25     # Cython generated code is vendored directly and no longer compatible with
26     # newer versions of the CPython C API.
27     #
28     # Upstream explicitly removed the Cython source files from the source
29     # distribution, making it impossible for us to force-compile them:
30     # https://github.com/joe-jordan/pyvoro/commit/922bba6db32d44c2e1825228627a25aa891f9bc1
31     #
32     # No upstream activity since 2014.
33     broken = true;
34   };