libleidenalg: 0.12.0 -> 0.13.0 (#523746)

This commit is contained in:
dotlambda
2026-05-24 20:19:16 +00:00
committed by GitHub
2 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -8,13 +8,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "libleidenalg";
version = "0.12.0";
version = "0.13.0";
src = fetchFromGitHub {
owner = "vtraag";
repo = "libleidenalg";
tag = finalAttrs.version;
hash = "sha256-ptfX31/1cUHLluc+Y+g28s4BEoGC0LqC9HH0cpkJRJQ=";
hash = "sha256-27n8Wdzu0H2Fym3aiZkE+16dgrkSK59+YWOfs+iPzI8=";
};
nativeBuildInputs = [
@@ -10,16 +10,16 @@
unittestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "leidenalg";
version = "0.11.0";
version = "0.12.0";
pyproject = true;
src = fetchFromGitHub {
owner = "vtraag";
repo = "leidenalg";
tag = version;
hash = "sha256-u4xW1gsWDpbsFVLlOIiPZtpw9t4iFBC7fzwn04flev8=";
tag = finalAttrs.version;
hash = "sha256-E8mFzEVzff3BEt5sPDXy8/ofZgVfzgiUyIqT59/Trd0=";
};
build-system = [ setuptools-scm ];
@@ -29,7 +29,7 @@ buildPythonPackage rec {
libleidenalg
];
propagatedBuildInputs = [ igraph ];
dependencies = [ igraph ];
nativeCheckInputs = [
ddt
@@ -39,10 +39,10 @@ buildPythonPackage rec {
pythonImportsCheck = [ "leidenalg" ];
meta = {
changelog = "https://github.com/vtraag/leidenalg/blob/${src.tag}/CHANGELOG";
changelog = "https://github.com/vtraag/leidenalg/blob/${finalAttrs.src.tag}/CHANGELOG";
description = "Implementation of the Leiden algorithm for various quality functions to be used with igraph in Python";
homepage = "https://github.com/vtraag/leidenalg";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ jboy ];
};
}
})