Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python311Packages.niaarm: update disabled python version and add missing inputs

authored by OTABI Tomoya and committed by GitHub 47e2a5df 82fbe682

+6 -1
+6 -1
pkgs/development/python-modules/niaarm/default.nix
··· 3 , fetchFromGitHub 4 , niapy 5 , nltk 6 , pandas 7 , poetry-core 8 , pytestCheckHook 9 , pythonOlder 10 }: 11 12 buildPythonPackage rec { ··· 14 version = "0.3.5"; 15 format = "pyproject"; 16 17 - disabled = pythonOlder "3.7"; 18 19 src = fetchFromGitHub { 20 owner = "firefly-cpp"; ··· 30 propagatedBuildInputs = [ 31 niapy 32 nltk 33 pandas 34 ]; 35 36 disabledTests = [
··· 3 , fetchFromGitHub 4 , niapy 5 , nltk 6 + , numpy 7 , pandas 8 , poetry-core 9 , pytestCheckHook 10 , pythonOlder 11 + , tomli 12 }: 13 14 buildPythonPackage rec { ··· 16 version = "0.3.5"; 17 format = "pyproject"; 18 19 + disabled = pythonOlder "3.9"; 20 21 src = fetchFromGitHub { 22 owner = "firefly-cpp"; ··· 32 propagatedBuildInputs = [ 33 niapy 34 nltk 35 + numpy 36 pandas 37 + ] ++ lib.optionals (pythonOlder "3.11") [ 38 + tomli 39 ]; 40 41 disabledTests = [