From ae7d333f5a2eda5d750bed978191caafeb8a74aa Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 14 Jan 2025 09:09:10 +0000 Subject: [PATCH] gnu: python-agate: Update to 1.12.0. * gnu/packages/wireservice.scm (python-agate): Update to 1.12.0. [build-system]: Swap to pyproject-build-system. [aruguments] : Use default 'check, remove 'install-docs. [propagated-inputs]: Add python-babel, python-isodate, python-leather, python-parsedatetime, python-pytimeparse, python-slugify, and python-tzdata. [native-inputs]: Add libc-utf8-locales-for-target. Change-Id: I694c863ec7c832d5be274952aded35e027f6d22f --- gnu/packages/wireservice.scm | 71 +++++++++++++++++++----------------- 1 file changed, 38 insertions(+), 33 deletions(-) diff --git a/gnu/packages/wireservice.scm b/gnu/packages/wireservice.scm index 9e6f7996c3371c21fd5a70db5ac81c53356ed597..6c3616d1d0291963b90fc88174e53c0c6669d65c 100644 --- a/gnu/packages/wireservice.scm +++ b/gnu/packages/wireservice.scm @@ -104,39 +104,44 @@ don't care if they're perfect.") #:name "python-agate-locales")) (define-public python-agate - (wireservice-package - (name "python-agate") - (version "1.7.1") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/wireservice/agate") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1wqyml7f70hr7zhgwvwqy4bdshlbcmp4jmyc5y12jyx10xp3sk7c")))) - (native-inputs - (list (libc-utf8-locales-for-target) - python-agate-locales - python-nose - python-sphinx - python-sphinx-rtd-theme - python-cssselect - python-lxml)) - (propagated-inputs - (list python-babel - python-isodate - python-leather - python-parsedatetime - python-pytimeparse - python-six - python-slugify)) - (home-page "https://agate.rtfd.org") - (synopsis "Data analysis library") - (description "Agate is a Python data analysis library. It is an -alternative to numpy and pandas that solves real-world problems with readable -code. Agate was previously known as journalism."))) + (package + (name "python-agate") + (version "1.12.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/wireservice/agate") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qvjlcbv42pjphz5i7vvd5p25barqmglhdzksaspg66n83gps8gv")))) + (build-system pyproject-build-system) + ;; XXX: Documentation requires which + ;; is not packaged yet and depends on some missing Node.js packages + (native-inputs + (list (libc-utf8-locales-for-target) + python-agate-locales + python-cssselect + python-lxml + python-pytest + python-setuptools + python-wheel)) + (propagated-inputs + (list python-babel + python-isodate + python-leather + python-parsedatetime + python-pytimeparse + python-slugify + python-tzdata)) + (home-page "https://agate.rtfd.org") + (synopsis "Data analysis library") + (description + "Agate is a Python data analysis library. It is an alternative to numpy +and pandas that solves real-world problems with readable code. Agate was +previously known as journalism.") + (license license:expat))) (define-public python-agate-sql (wireservice-package