python310Packages.miniful: init at 0.0.6

This commit is contained in:
Fabian Affolter 2023-04-30 18:32:24 +02:00
parent fe2ecaf706
commit e4e730bdbf
2 changed files with 41 additions and 0 deletions
pkgs
development/python-modules/miniful
top-level

View File

@ -0,0 +1,39 @@
{ 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 ];
};
}

View File

@ -6049,6 +6049,8 @@ self: super: with self; {
minidump = callPackage ../development/python-modules/minidump { };
miniful = callPackage ../development/python-modules/miniful { };
minikanren = callPackage ../development/python-modules/minikanren { };
minikerberos = callPackage ../development/python-modules/minikerberos { };