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