1{ lib, buildPythonPackage, fetchPypi, numpy, cython }:
2
3buildPythonPackage rec {
4 pname = "libmr";
5 version = "0.1.9";
6
7 src = fetchPypi {
8 inherit pname version;
9 extension = "zip";
10 sha256 = "43ccd86693b725fa3abe648c8cdcef17ba5fa46b5528168829e5f9b968dfeb70";
11 };
12
13 propagatedBuildInputs = [ numpy cython ];
14
15 # No tests in the pypi tarball
16 doCheck = false;
17
18 meta = with lib; {
19 description = "libMR provides core MetaRecognition and Weibull fitting functionality";
20 homepage = "https://github.com/Vastlab/libMR";
21 license = licenses.bsd3;
22 maintainers = with maintainers; [ psyanticy ];
23 };
24}
25