mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add python-quicktions.
* gnu/packages/python-xyz.scm (python-quicktions): New variable. Co-authored-by: jgart <jgart@dismail.de> Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
c578d7a25a
commit
565ecf8457
1 changed files with 40 additions and 0 deletions
|
@ -24686,6 +24686,46 @@ (define-public python-ld
|
||||||
runs on, such as a reliable machine-readable ID, or version information.")
|
runs on, such as a reliable machine-readable ID, or version information.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public python-quicktions
|
||||||
|
(package
|
||||||
|
(name "python-quicktions")
|
||||||
|
(version "1.11")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "quicktions" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1px21a6x527i1bsr2p6bbf3jziqpvd1vjkvvzh13gsy4iip0yvzn"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
'(begin
|
||||||
|
;; This file is generated by Cython.
|
||||||
|
(delete-file "src/quicktions.c") #t))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'build 'cythonize-sources
|
||||||
|
(lambda _
|
||||||
|
(with-directory-excursion "src"
|
||||||
|
(invoke "cython" "quicktions.pyx"))))
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? inputs outputs #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
(add-installed-pythonpath inputs outputs)
|
||||||
|
(invoke "pytest"))
|
||||||
|
#t)))))
|
||||||
|
(native-inputs
|
||||||
|
`(("python-cython" ,python-cython)
|
||||||
|
("python-pytest" ,python-pytest)))
|
||||||
|
(home-page "https://github.com/scoder/quicktions")
|
||||||
|
(synopsis "Fast fractions data type for rational numbers")
|
||||||
|
(description
|
||||||
|
"This package provides fast fractions data type for rational numbers. It
|
||||||
|
is the cythonized version of @code{fractions.Fraction}.")
|
||||||
|
(license license:psfl)))
|
||||||
|
|
||||||
(define-public python-pathvalidate
|
(define-public python-pathvalidate
|
||||||
(package
|
(package
|
||||||
(name "python-pathvalidate")
|
(name "python-pathvalidate")
|
||||||
|
|
Loading…
Reference in a new issue