blob: 83a29565ba889a5b2f78534d9c291ad2f6fda8fc (
plain)
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
|
{
lib,
buildPythonPackage,
fetchPypi,
numpy,
cython,
}:
buildPythonPackage rec {
pname = "libmr";
version = "0.1.9";
format = "setuptools";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "43ccd86693b725fa3abe648c8cdcef17ba5fa46b5528168829e5f9b968dfeb70";
};
propagatedBuildInputs = [
numpy
cython
];
# No tests in the pypi tarball
doCheck = false;
meta = {
description = "LibMR provides core MetaRecognition and Weibull fitting functionality";
homepage = "https://github.com/Vastlab/libMR";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ psyanticy ];
};
}
|