forked from mirrors/nixpkgs
Merge pull request #211398 from firefly-cpp/niaarm-024
python310Packages.niaarm: 0.2.2 -> 0.2.4
This commit is contained in:
commit
58c8a62fd1
|
@ -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 ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue