libfmvoice: 0-unstable-2024-11-08 -> 0-unstable-2024-12-11 (#364919)
[NixPkgs.git] / pkgs / development / python-modules / miniful / default.nix
blob53bdf601899e7e4e3e8c58f0f4f3d13a9c5cf3fd
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   numpy,
6   scipy,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "miniful";
12   version = "0.0.6";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-ZCyfNrh8gbPvwplHN5tbmbjTMYXJBKe8Mg2JqOGHFCk=";
20   };
22   propagatedBuildInputs = [
23     numpy
24     scipy
25   ];
27   # Module has no tests
28   doCheck = false;
30   pythonImportsCheck = [ "miniful" ];
32   meta = with lib; {
33     description = "Minimal Fuzzy Library";
34     homepage = "https://github.com/aresio/miniful";
35     license = with licenses; [ lgpl3Only ];
36     maintainers = with maintainers; [ fab ];
37   };