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