depot/third_party/nixpkgs/pkgs/development/python-modules/leidenalg/default.nix
Default email 4bac34ead1 Project import generated by Copybara.
GitOrigin-RevId: 724bfc0892363087709bd3a5a1666296759154b1
2023-02-09 12:40:11 +01:00

54 lines
1 KiB
Nix

{ lib
, buildPythonPackage
, ddt
, fetchPypi
, igraph
, igraph-c
, pythonOlder
, setuptools-scm
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "leidenalg";
version = "0.9.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-flz+O2+A8yuQ9V81xo1KmQsEibEoLPP6usjNpJiJdfM=";
};
postPatch = ''
substituteInPlace ./setup.py \
--replace "[\"/usr/include/igraph\", \"/usr/local/include/igraph\"]" \
"[\"${igraph-c.dev}/include/igraph\"]"
rm -r vendor
'';
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
igraph
igraph-c
];
checkInputs = [
ddt
unittestCheckHook
];
pythonImportsCheck = [ "leidenalg" ];
meta = with lib; {
description = "Implementation of the Leiden algorithm for various quality functions to be used with igraph in Python";
homepage = "https://leidenalg.readthedocs.io";
license = licenses.gpl3Only;
maintainers = with maintainers; [ jboy ];
};
}