mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: Add python-cons.
* gnu/packages/python-xyz.scm (python-cons): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
9373007321
commit
37e6f02880
1 changed files with 24 additions and 0 deletions
|
@ -27421,6 +27421,30 @@ (define-public python-logical-unification
|
||||||
symbolic expressions in pure Python using the technique of logical unification.")
|
symbolic expressions in pure Python using the technique of logical unification.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public python-cons
|
||||||
|
(package
|
||||||
|
(name "python-cons")
|
||||||
|
(version "0.4.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "cons" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0w9giq196wps7mbm47c4shdzs5yvwvqajqzkim2p92i51sm5qgvm"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("python-pytest" ,python-pytest-6)
|
||||||
|
("python-toml" ,python-toml)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-logical-unification" ,python-logical-unification)))
|
||||||
|
(home-page "https://github.com/pythological/python-cons")
|
||||||
|
(synopsis "Cons cell data structures and related algorithms for Python")
|
||||||
|
(description
|
||||||
|
"This library implements algorithms and data structures for Lisp-style
|
||||||
|
cons cells in Python.")
|
||||||
|
(license license:lgpl3+)))
|
||||||
|
|
||||||
(define-public date2name
|
(define-public date2name
|
||||||
(let ((commit "6c8f37277e8ec82aa50f90b8921422be30c4e798")
|
(let ((commit "6c8f37277e8ec82aa50f90b8921422be30c4e798")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
|
|
Loading…
Reference in a new issue