summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiliana Marie Prikler <liliana.prikler@gmail.com>2024-07-19 14:41:33 +0200
committerLiliana Marie Prikler <liliana.prikler@gmail.com>2024-07-27 11:25:23 +0200
commit009fb462efcc42585e34b939f800b5f6785f85cf (patch)
treeaad2d74efe168b2d42bad7e231c5fee1de7dfa65
parentd3e2b68e380d4e7c514f9f1cdaec60b3013e9c08 (diff)
gnu: Add python-clingox.
* gnu/packages/potassco.scm (python-clingox): New variable.
-rw-r--r--gnu/packages/potassco.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/potassco.scm b/gnu/packages/potassco.scm
index fe56d1e8b87..9f6b48f8904 100644
--- a/gnu/packages/potassco.scm
+++ b/gnu/packages/potassco.scm
@@ -430,6 +430,27 @@ Python code.")))
430as a theory to clingo from Python code. It also supports running clingo-dl 430as a theory to clingo from Python code. It also supports running clingo-dl
431directly from the python command line."))) 431directly from the python command line.")))
432 432
433(define-public python-clingox
434 (package
435 (name "python-clingox")
436 (version "1.2.1")
437 (source (origin
438 (method git-fetch)
439 (uri (git-reference
440 (url "https://github.com/potassco/python-clingox")
441 (commit (string-append "v" version))))
442 (file-name (git-file-name name version))
443 (sha256
444 (base32
445 "0ji0sdqlv0byxmdipwk60afsb82r0rr1j73r7j2508hsfk94m2i8"))))
446 (build-system pyproject-build-system)
447 (propagated-inputs (list python-clingo))
448 (home-page "https://potassco.org/clingo")
449 (synopsis "Auxiliary functions for Clingo")
450 (description "This package provides additional functions to go along with
451the Python bindings for Clingo.")
452 (license license:expat)))
453
433(define-public python-asprin 454(define-public python-asprin
434 (let ((revision "1") 455 (let ((revision "1")
435 (commit "bc5a0cf7d9ba346cf91cba66282b5946dbf1331c")) 456 (commit "bc5a0cf7d9ba346cf91cba66282b5946dbf1331c"))