diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2022-10-15 16:46:40 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2022-11-26 14:03:53 +0100 |
commit | d3ce4a2619784e58876ae81cef0cf099e9206be4 (patch) | |
tree | d5e443cb2cddfac75bd504d9868cce5d4978a949 /gnu/packages/maths.scm | |
parent | 58c24ec748f9f01d6c56a737a81a22e60ff88d55 (diff) |
gnu: Add louvain-community.
* gnu/packages/maths.scm (louvain-community): New variable.
Diffstat (limited to 'gnu/packages/maths.scm')
-rw-r--r-- | gnu/packages/maths.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index fedee36c55..5fc93fa4d8 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -7498,6 +7498,37 @@ the sequential @command{lingeling} and its parallel variants also included.") (license license:expat)))) +(define-public louvain-community + (let ((commit "8cc5382d4844af127b1c1257373740d7e6b76f1e") + (revision "1")) + (package + (name "louvain-community") + (version (git-version "1.0.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/meelgroup/louvain-community") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1ss00hkdvr9bdkd355hxf8zd7xycb3nm8qpy7s75gjjf6yng0bfj")))) + (build-system cmake-build-system) + (arguments + (list #:tests? #f ; tests appear to require missing files + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'encode-git-hash + (lambda _ + (substitute* "CMakeLists.txt" + (("GIT-hash-notfound") #$commit))))))) + (native-inputs (list python)) + (home-page "https://github.com/meelgroup/louvain-communities") + (synopsis "Multi-criteria community detection") + (description "This package provides a C++ implementation of the Louvain +community detection algorithm.") + (license license:lgpl3+)))) + (define-public libqalculate (package (name "libqalculate") |