mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-aplus: Update to 0.11.1-0.1ab8ebe.
* gnu/packages/python-science.scm (python-aplus): Update to 0.11.1-0.1ab8ebe. [source]: Switch to git-fetch and build from the latest commit. [build-system]: Switch to pyproject-build-system. [arguments] <tests?>: Disable them as depending on Nose test runner. [native-inputs]: Add python-setuptools. Change-Id: I34bf72f8d0103122dfcf399e6823eaca2db1d69d
This commit is contained in:
parent
185cb9ce5c
commit
2b1b170da5
1 changed files with 27 additions and 15 deletions
|
@ -335,22 +335,34 @@ reduces the code overhead typically encountered when using a mostly
|
||||||
object-oriented library such as @code{scikit-learn}.")
|
object-oriented library such as @code{scikit-learn}.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
;; XXX: See: <https://codeberg.org/guix/guix/issues/3093>.
|
||||||
(define-public python-aplus
|
(define-public python-aplus
|
||||||
(package
|
;; PyPI release lacks the latest version, Git has no tags.
|
||||||
(name "python-aplus")
|
(let ((commit "1ab8ebec987fb7213766784aad02cbf4410d9036")
|
||||||
(version "0.11.0")
|
(revision "0"))
|
||||||
(source
|
(package
|
||||||
(origin
|
(name "python-aplus")
|
||||||
(method url-fetch)
|
(version (git-version "0.11.1" revision commit))
|
||||||
(uri (pypi-uri "aplus" version))
|
(source
|
||||||
(sha256
|
(origin
|
||||||
(base32 "1rznc26nlp641rn8gpdngfp79a3fji38yavqakxi35mx2da04msg"))))
|
(method git-fetch)
|
||||||
(build-system python-build-system)
|
(uri (git-reference
|
||||||
(home-page "https://github.com/xogeny/aplus")
|
(url "https://github.com/xogeny/aplus")
|
||||||
(synopsis "Promises/A+ for Python")
|
(commit commit)))
|
||||||
(description "This package is an implementation of the Promises/A+
|
(file-name (git-file-name name version))
|
||||||
specification and test suite in Python.")
|
(sha256
|
||||||
(license license:expat)))
|
(base32 "02jcfj7dywvs0sd60c85pxwh0mwsj9p1q27445pba6j489x3dffj"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:tests? #f)) ;they depend on Nose test runner
|
||||||
|
(native-inputs
|
||||||
|
(list python-setuptools))
|
||||||
|
(home-page "https://github.com/xogeny/aplus")
|
||||||
|
(synopsis "Promises/A+ for Python")
|
||||||
|
(description
|
||||||
|
"This package is an implementation of the Promises/A+ specification and
|
||||||
|
test suite in Python.")
|
||||||
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public python-apted
|
(define-public python-apted
|
||||||
;; PyPI release lacks tests and there is no Git tag.
|
;; PyPI release lacks tests and there is no Git tag.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue