Merge pull request #211398 from firefly-cpp/niaarm-024

python310Packages.niaarm: 0.2.2 -> 0.2.4
This commit is contained in:
Fabian Affolter 2023-01-19 14:27:29 +01:00 committed by GitHub
commit 58c8a62fd1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,17 +10,17 @@
}:
buildPythonPackage rec {
pname = "NiaARM";
version = "0.2.2";
pname = "niaarm";
version = "0.2.4";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "firefly-cpp";
repo = pname;
repo = "NiaARM";
rev = version;
hash = "sha256-IY72hDklPkGjb2zo7Wf0MBiPn/jHtyUKW9D0jxA0P54=";
hash = "sha256-JPsBpVMeVZxUhCHoIBP47LhR8nrc8ZtJHREZLwL5Zxw=";
};
nativeBuildInputs = [
@ -33,6 +33,11 @@ buildPythonPackage rec {
pandas
];
disabledTests = [
# Test requires extra nltk data dependency
"test_text_mining"
];
checkInputs = [
pytestCheckHook
];
@ -44,6 +49,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "A minimalistic framework for Numerical Association Rule Mining";
homepage = "https://github.com/firefly-cpp/NiaARM";
changelog = "https://github.com/firefly-cpp/NiaARM/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ firefly-cpp ];
};