diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-17 23:13:49 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:23:26 +0000 |
commit | 1b979d7a1beafc75ef55b87162fec4e78fd8ef82 (patch) | |
tree | 8c71309efaa3181c7172a6779f9c49e3e0b49543 | |
parent | 75b4f5a4571c1b5a94fd9b550a0d262ab20c1c2c (diff) | |
download | guix-1b979d7a1beafc75ef55b87162fec4e78fd8ef82.tar.gz guix-1b979d7a1beafc75ef55b87162fec4e78fd8ef82.zip |
gnu: python-flasgger: Update to 0.9.7.1.
* gnu/packages/python-xyz.scm (python-flasgger): Update to 0.9.7.1.
[source]: Upstream introduced a new tagging style.
[native-inputs]: Remove python-flake8 and python-flask-jwt.
Change-Id: I5f740f064f2b82b62da5eedea3ca0384682967c6
19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index b4d9f62003..7c00410c6b 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -2769,20 +2769,18 @@ including functions for geolocation and routing.") (define-public r-haven (package (name "r-haven") - (version "2.4.1") + (version "2.4.3") (source (origin (method url-fetch) (uri (cran-uri "haven" version)) (sha256 (base32 - "1san6dc7kg2wy6f1jr5p1br28zdrand8wwgg7p6xxnx45h773320")) + "0pr9jcdk1r9pi9iz0xm1g5yy5qyjk5r7hh9467abx4kpwx3hzdwm")) (modules '((guix build utils))) (snippet - '(begin - ;; unvendor readstat - (delete-file-recursively "src/readstat") - #t)))) + ;; unvendor readstat + '(delete-file-recursively "src/readstat")))) (build-system r-build-system) (arguments '(#:phases @@ -2791,8 +2789,7 @@ including functions for geolocation and routing.") (lambda _ ;; Not required, since we’re not building readstat. (substitute* "src/Makevars" - (("-lz") "-lreadstat")) - #t))))) + (("-lz") "-lreadstat"))))))) (inputs `(("readstat" ,readstat))) (native-inputs @@ -2807,10 +2804,10 @@ including functions for geolocation and routing.") ("r-tidyselect" ,r-tidyselect) ("r-vctrs" ,r-vctrs))) (home-page "https://haven.tidyverse.org") - (synopsis "Import and Export 'SPSS', 'Stata' and 'SAS' Files") + (synopsis "Import and export SPSS, Stata and SAS files") (description - "This package lets you mport foreign statistical formats into R via the -embedded @url{https://github.com/WizardMac/ReadStat,ReadStat} C library.") + "This package lets you import foreign statistical formats into R via the +@url{https://github.com/WizardMac/ReadStat,ReadStat} C library.") (license license:expat))) (define-public r-amap |