summaryrefslogtreecommitdiff
path: root/gnu/packages/python-crypto.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2020-01-06 11:49:37 +0200
committerEfraim Flashner <efraim@flashner.co.il>2020-01-06 11:49:37 +0200
commit263ea4ebc30ee360e3422b70a3404c8330351566 (patch)
tree30ff9611e18f99891c032149fae69d5cebe16dfa /gnu/packages/python-crypto.scm
parent2ff17f06e7afc733b2459d563b0173f3fa346611 (diff)
gnu: python-axolotl: Don't use unstable tarball.
* gnu/packages/python-crypto.scm (python-axolotl)[source]: Download using git-fetch.
Diffstat (limited to 'gnu/packages/python-crypto.scm')
-rw-r--r--gnu/packages/python-crypto.scm14
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 63d3be17c29..43a0d95ddc2 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -1,6 +1,6 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr> 2;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
3;;; Copyright © 2015, 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il> 3;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
4;;; Copyright © 2015, 2016, 2017, 2019 Leo Famulari <leo@famulari.name> 4;;; Copyright © 2015, 2016, 2017, 2019 Leo Famulari <leo@famulari.name>
5;;; Copyright © 2016, 2017 Marius Bakke <mbakke@fastmail.com> 5;;; Copyright © 2016, 2017 Marius Bakke <mbakke@fastmail.com>
6;;; Copyright © 2017 Ben Sturmfels <ben@sturm.com.au> 6;;; Copyright © 2017 Ben Sturmfels <ben@sturm.com.au>
@@ -533,14 +533,14 @@ python-axolotl.")
533 (version "0.1.39") 533 (version "0.1.39")
534 (source 534 (source
535 (origin 535 (origin
536 (method url-fetch) 536 (method git-fetch)
537 (uri (string-append 537 (uri (git-reference
538 "https://github.com/tgalal/python-axolotl/archive/" 538 (url "https://github.com/tgalal/python-axolotl")
539 version ".tar.gz")) 539 (commit version)))
540 (file-name (string-append name "-" version ".tar.gz")) 540 (file-name (git-file-name name version))
541 (patches (search-patches "python-axolotl-AES-fix.patch")) 541 (patches (search-patches "python-axolotl-AES-fix.patch"))
542 (sha256 542 (sha256
543 (base32 "0badsgkgz0ir3hqynxzsfjgacppi874syvvmgccc6j164053x6zm")))) 543 (base32 "0xm9qgcwf6fq7rhzfcviwhbzcbj4i7wkxkab2z55fy1x82lya9g6"))))
544 (build-system python-build-system) 544 (build-system python-build-system)
545 (arguments 545 (arguments
546 `(#:phases 546 `(#:phases