Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 numpy,
6 scipy,
7}:
8
9buildPythonPackage rec {
10 pname = "miniful";
11 version = "0.0.6";
12 format = "setuptools";
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-ZCyfNrh8gbPvwplHN5tbmbjTMYXJBKe8Mg2JqOGHFCk=";
17 };
18
19 propagatedBuildInputs = [
20 numpy
21 scipy
22 ];
23
24 # Module has no tests
25 doCheck = false;
26
27 pythonImportsCheck = [ "miniful" ];
28
29 meta = {
30 description = "Minimal Fuzzy Library";
31 homepage = "https://github.com/aresio/miniful";
32 license = with lib.licenses; [ lgpl3Only ];
33 maintainers = with lib.maintainers; [ fab ];
34 };
35}