gnu: python-cffi: Add 1.15.
* gnu/packages/libffi.scm (python-cffi-1.15): New variable.
parent
1d2df8db2c
commit
a16ca6b381
|
@ -4,7 +4,7 @@
|
||||||
;;; Copyright © 2015, 2019 Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de>
|
;;; Copyright © 2015, 2019 Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de>
|
||||||
;;; Copyright © 2016, 2017, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016, 2017, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2016, 2017 Ben Woodcroft <donttrustben@gmail.com>
|
;;; Copyright © 2016, 2017 Ben Woodcroft <donttrustben@gmail.com>
|
||||||
;;; Copyright © 2017, 2019, 2020 Marius Bakke <marius@gnu.org>
|
;;; Copyright © 2017, 2019, 2020, 2022 Marius Bakke <marius@gnu.org>
|
||||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2019, 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2019, 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;; Copyright © 2020 John Doe <dftxbs3e@free.fr>
|
;;; Copyright © 2020 John Doe <dftxbs3e@free.fr>
|
||||||
|
@ -140,6 +140,18 @@ conversions for values passed between the two languages.")
|
||||||
(description "Foreign Function Interface for Python calling C code.")
|
(description "Foreign Function Interface for Python calling C code.")
|
||||||
(license expat)))
|
(license expat)))
|
||||||
|
|
||||||
|
;; TODO(staging): Merge with the above.
|
||||||
|
(define-public python-cffi-1.15
|
||||||
|
(package
|
||||||
|
(inherit python-cffi)
|
||||||
|
(version "1.15.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "cffi" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0m3rz2pqfmyfagx0bhj2jlbr2h58j3wr3cyv1agxkhlnm1k0s3wj"))))))
|
||||||
|
|
||||||
(define-public python2-cffi
|
(define-public python2-cffi
|
||||||
(package-with-python2 python-cffi))
|
(package-with-python2 python-cffi))
|
||||||
|
|
||||||
|
|
Reference in New Issue