lol

python3Packages.niaarm: unpin plotly, 0.4.1 -> 0.4.2 (#417980)

authored by

dotlambda and committed by
GitHub
90c38eb1 ef085322

+4 -3
+4 -3
pkgs/development/python-modules/niaarm/default.nix
··· 24 buildPythonPackage rec { 25 pname = "niaarm"; 26 # nixpkgs-update: no auto update 27 - version = "0.4.1"; 28 pyproject = true; 29 30 src = fetchFromGitHub { 31 owner = "firefly-cpp"; 32 repo = "NiaARM"; 33 tag = version; 34 - hash = "sha256-/lEW6SUV+CRovYmLVWiolYDHYmMJSJHnYNo9+lBc9nY="; 35 }; 36 37 pythonRelaxDeps = [ 38 "numpy" 39 "scikit-learn" 40 ]; 41 ··· 70 description = "Minimalistic framework for Numerical Association Rule Mining"; 71 mainProgram = "niaarm"; 72 homepage = "https://github.com/firefly-cpp/NiaARM"; 73 - changelog = "https://github.com/firefly-cpp/NiaARM/blob/${version}/CHANGELOG.md"; 74 license = lib.licenses.mit; 75 maintainers = with lib.maintainers; [ firefly-cpp ]; 76 };
··· 24 buildPythonPackage rec { 25 pname = "niaarm"; 26 # nixpkgs-update: no auto update 27 + version = "0.4.2"; 28 pyproject = true; 29 30 src = fetchFromGitHub { 31 owner = "firefly-cpp"; 32 repo = "NiaARM"; 33 tag = version; 34 + hash = "sha256-WvVXL1a1DvgLF3upbGUi1+nH5aDBUNx5Bitlkb8lQkc="; 35 }; 36 37 pythonRelaxDeps = [ 38 "numpy" 39 + "plotly" 40 "scikit-learn" 41 ]; 42 ··· 71 description = "Minimalistic framework for Numerical Association Rule Mining"; 72 mainProgram = "niaarm"; 73 homepage = "https://github.com/firefly-cpp/NiaARM"; 74 + changelog = "https://github.com/firefly-cpp/NiaARM/releases/tag/${src.tag}"; 75 license = lib.licenses.mit; 76 maintainers = with lib.maintainers; [ firefly-cpp ]; 77 };