python310Packages.miniful: init at 0.0.6
This commit is contained in:
parent
fe2ecaf706
commit
e4e730bdbf
pkgs
39
pkgs/development/python-modules/miniful/default.nix
Normal file
39
pkgs/development/python-modules/miniful/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user