mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
python3Packages.leidenalg: init at 0.9.1
This commit is contained in:
parent
fcc68d092b
commit
ebd2070df8
54
pkgs/development/python-modules/leidenalg/default.nix
Normal file
54
pkgs/development/python-modules/leidenalg/default.nix
Normal file
@ -0,0 +1,54 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -5255,6 +5255,10 @@ self: super: with self; {
|
||||
inherit (pkgs.darwin.apple_sdk.frameworks) AppKit;
|
||||
};
|
||||
|
||||
leidenalg = callPackage ../development/python-modules/leidenalg {
|
||||
igraph-c = pkgs.igraph;
|
||||
};
|
||||
|
||||
lektor = callPackage ../development/python-modules/lektor { };
|
||||
|
||||
leveldb = callPackage ../development/python-modules/leveldb { };
|
||||
|
Loading…
Reference in New Issue
Block a user