Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / miniful / default.nix
blob434e8bc403bbf4535eef7fe810f0ebd77b10f8c4
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , numpy
5 , scipy
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "miniful";
11   version = "0.0.6";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-ZCyfNrh8gbPvwplHN5tbmbjTMYXJBKe8Mg2JqOGHFCk=";
19   };
21   propagatedBuildInputs = [
22     numpy
23     scipy
24   ];
26   # Module has no tests
27   doCheck = false;
29   pythonImportsCheck = [
30     "miniful"
31   ];
33   meta = with lib; {
34     description = "Minimal Fuzzy Library";
35     homepage = "https://github.com/aresio/miniful";
36     license = with licenses; [ lgpl3Only ];
37     maintainers = with maintainers; [ fab ];
38   };