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