mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: python-xxhash: Update to 3.1.0.
* gnu/packages/digest.scm (python-xxhash): Update to 3.1.0. [build-system]: Use pyproject-build-system. [native-inputs]: Add python-setuptools-scm.
This commit is contained in:
parent
4781f0458d
commit
840d543939
1 changed files with 8 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2017, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2021 Ryan Prior <rprior@protonmail.com>
|
;;; Copyright © 2021 Ryan Prior <rprior@protonmail.com>
|
||||||
;;; Copyright © 2021 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2021, 2022 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -25,9 +25,11 @@ (define-module (gnu packages digest)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
|
#:use-module (guix build-system pyproject)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
#:use-module (guix build-system trivial)
|
#:use-module (guix build-system trivial)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
|
#:use-module (gnu packages python-build)
|
||||||
#:use-module (ice-9 match))
|
#:use-module (ice-9 match))
|
||||||
|
|
||||||
(define-public wyhash
|
(define-public wyhash
|
||||||
|
@ -111,15 +113,17 @@ (define-public xxhash
|
||||||
(define-public python-xxhash
|
(define-public python-xxhash
|
||||||
(package
|
(package
|
||||||
(name "python-xxhash")
|
(name "python-xxhash")
|
||||||
(version "2.0.2")
|
(version "3.1.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "xxhash" version))
|
(uri (pypi-uri "xxhash" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0jbvz19acznq00544gcsjg05fkvrmwbnwdfgrvwss3i1ys6avgmp"))))
|
"1hdxcscry59gh0znlm71ya23mm9rfmvz8lvvlplzxzf63pib28dc"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
|
;; Needed to embed the correct version string
|
||||||
|
(native-inputs (list python-setuptools-scm))
|
||||||
(home-page "https://github.com/ifduyue/python-xxhash")
|
(home-page "https://github.com/ifduyue/python-xxhash")
|
||||||
(synopsis "Python binding for xxHash")
|
(synopsis "Python binding for xxHash")
|
||||||
(description "This package provides Python bindings for the xxHash hash
|
(description "This package provides Python bindings for the xxHash hash
|
||||||
|
|
Loading…
Reference in a new issue