blob: 53bdf601899e7e4e3e8c58f0f4f3d13a9c5cf3fd (
plain) (
blame)
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
35
36
37
38
|
{
lib,
buildPythonPackage,
fetchPypi,
numpy,
scipy,
pythonOlder,
}:
buildPythonPackage rec {
pname = "miniful";
version = "0.0.6";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-ZCyfNrh8gbPvwplHN5tbmbjTMYXJBKe8Mg2JqOGHFCk=";
};
propagatedBuildInputs = [
numpy
scipy
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "miniful" ];
meta = with lib; {
description = "Minimal Fuzzy Library";
homepage = "https://github.com/aresio/miniful";
license = with licenses; [ lgpl3Only ];
maintainers = with maintainers; [ fab ];
};
}
|