gnu: python-pyspnego: Update to 0.8.0.
* gnu/packages/python-xyz.scm (python-pyspnego): Update to 0.8.0. [source]: Download from pypi. [arguments]: Remove custom 'check phase. [build-system]: Switch to pyproject-build-system. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>master
parent
bb20ab942e
commit
75ee7ec470
|
@ -141,6 +141,7 @@
|
||||||
;;; Copyright © 2023 Ontje Lünsdorf <ontje.luensdorf@dlr.de>
|
;;; Copyright © 2023 Ontje Lünsdorf <ontje.luensdorf@dlr.de>
|
||||||
;;; Copyright © 2023 Parnikkapore <poomklao@yahoo.com>
|
;;; Copyright © 2023 Parnikkapore <poomklao@yahoo.com>
|
||||||
;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com>
|
;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com>
|
||||||
|
;;; Copyright © c4droid <c4droid@foxmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -7474,24 +7475,14 @@ color scales, and color space conversion easy. It has support for:
|
||||||
(define-public python-pyspnego
|
(define-public python-pyspnego
|
||||||
(package
|
(package
|
||||||
(name "python-pyspnego")
|
(name "python-pyspnego")
|
||||||
(version "0.1.6")
|
(version "0.8.0")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
(method url-fetch)
|
||||||
(method git-fetch) ;no tests in PyPI release
|
(uri (pypi-uri "pyspnego" version))
|
||||||
(uri (git-reference
|
(sha256
|
||||||
(url "https://github.com/jborean93/pyspnego")
|
(base32
|
||||||
(commit (string-append "v" version))))
|
"1ps34laa0kvvp33az173hp5l0hnk8cr0bfqmlgw64ry5cv09qjg0"))))
|
||||||
(file-name (git-file-name name version))
|
(build-system pyproject-build-system)
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0pfh2x0539f0k2qi2pbjm64b2fqp64c63xxpinvg1yfaw915kgpb"))))
|
|
||||||
(build-system python-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:phases (modify-phases %standard-phases
|
|
||||||
(replace 'check
|
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
|
||||||
(when tests?
|
|
||||||
(invoke "pytest")))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest python-pytest-mock))
|
(list python-pytest python-pytest-mock))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
|
Reference in New Issue