* [bug#40511] Add fava, a beancount web UI
@ 2020-04-08 17:27 Christopher Lemmer Webber
2020-04-28 19:45 ` [bug#40511] [PATCH 1/10] gnu: Add python-jarco-classes Christopher Lemmer Webber
2024-03-19 9:55 ` bug#40511: Add fava, a beancount web UI Sharlatan Hellseher
0 siblings, 2 replies; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-08 17:27 UTC (permalink / raw)
To: 40511
[-- Attachment #1: Type: text/plain, Size: 1202 bytes --]
So it turns out fava, a web UI for beancount, is amazing, just amazing.
I recommend everyone use it and switch to it and hug it and tell it how
much they love and appreciate it. You can see an example version
running here:
https://fava.pythonanywhere.com/example-beancount-file/income_statement/
I got it "packaged" in the sense that the package works and runs.
However it isn't good enough for Guix yet.
- Needs to be separated out into separate commits
- I lost patience with several dependencies' test requirments and
disabled tests
- At least one dependency's tests requires a newer pytest. That's not
in master yet afaict because, based on this email:
https://lists.gnu.org/archive/html/guix-devel/2019-10/msg00598.html
It was waiting for Python 3.8.0 to hit core-updates. I haven't
looked yet whether that's happening or not.
I need to get back to other work right now, but figured that it was more
helpful than nothing to leave a "it works, but isn't quite right" patch
on the mailing list before I forgot.
It's really quite close, but I'm drowning in tasks ATM. Maybe I can
come back to this, though if someone else beat me to it, I wouldn't
complain.
- Chris
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-fava-and-deps-wip.patch --]
[-- Type: text/x-patch, Size: 13053 bytes --]
From 220ab3414adb136d09d603ea96e5b321fe06af2e Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 7 Apr 2020 16:10:21 -0400
Subject: [PATCH] fava and deps wip
---
gnu/packages/finance.scm | 33 ++++
gnu/packages/python-xyz.scm | 317 ++++++++++++++++++++++++++++++++++++
2 files changed, 350 insertions(+)
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm
index e666860392..5de5f168b0 100644
--- a/gnu/packages/finance.scm
+++ b/gnu/packages/finance.scm
@@ -1440,3 +1440,36 @@ a Qt GUI.")
define financial transaction records in a text file, read them in memory,
generate a variety of reports from them, and provides a web interface.")
(license license:gpl2)))
+
+(define-public fava
+ (package
+ (name "fava")
+ (version "1.14")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "fava" version))
+ (sha256
+ (base32
+ "181ypq2p7aaq2b76s55hxxbm1hykzf45mjjgm500h4dsaa167dqy"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("beancount" ,beancount)
+ ("python-babel" ,python-babel)
+ ("python-cheroot" ,python-cheroot)
+ ("python-click" ,python-click)
+ ("python-flask" ,python-flask)
+ ("python-flask-babel" ,python-flask-babel)
+ ("python-jinja2" ,python-jinja2)
+ ("python-markdown2" ,python-markdown2)
+ ("python-ply" ,python-ply)
+ ("python-simplejson" ,python-simplejson)
+ ("python-werkzeug" ,python-werkzeug)))
+ (native-inputs
+ `(("python-setuptools-scm" ,python-setuptools-scm)))
+ (home-page "https://beancount.github.io/fava/")
+ (synopsis
+ "Web interface for the accounting tool Beancount.")
+ (description
+ "Web interface for the accounting tool Beancount.")
+ (license license:expat)))
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d98b38411f..1191f4e780 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19344,3 +19344,320 @@ an identity provider. The distribution contains examples of both.
This package was originally written to work in a WSGI environment, but
there are extensions that allow you to use it with other frameworks.")
(license license:asl2.0)))
+
+(define-public python-jaraco-classes
+ (package
+ (name "python-jaraco.classes")
+ (version "3.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "jaraco.classes" version))
+ (sha256
+ (base32
+ "1avsxzm5mwylmy2zbxq3xvn48z5djb0qy3hwv4ryncprivzri1n3"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ ;; Not importing the googleapis package for now
+ (add-after 'unpack 'ignore-googleapis
+ (lambda _
+ (substitute* "setup.py"
+ (("'pytest-black-multipy',") ""))
+ #t)))))
+ (propagated-inputs
+ `(("python-more-itertools" ,python-more-itertools)))
+ (native-inputs
+ `(("python-pytest" ,python-pytest)
+ ("python-pytest-checkdocs" ,python-pytest-checkdocs)
+ ("python-pytest-cov" ,python-pytest-cov)
+ ("python-pytest-flake8" ,python-pytest-flake8)
+ ("python-setuptools-scm" ,python-setuptools-scm)))
+ (home-page
+ "https://github.com/jaraco/jaraco.classes")
+ (synopsis
+ "Utility functions for Python class constructs")
+ (description
+ "Utility functions for Python class constructs")
+ (license #f)))
+
+(define-public python-jaraco-functools
+ (package
+ (name "python-jaraco-functools")
+ (version "3.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "jaraco.functools" version))
+ (sha256
+ (base32
+ "15vd7x4jillggb8xcg3cm00j1v6llhl16r0rqm0l4n2lyahfxc2w"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ ;; Not importing the googleapis package for now
+ (add-after 'unpack 'ignore-googleapis
+ (lambda _
+ (substitute* "setup.py"
+ (("'pytest-black-multipy',") ""))
+ #t)))))
+ (propagated-inputs
+ `(("python-more-itertools" ,python-more-itertools)))
+ (native-inputs
+ `(("python-mock" ,python-mock)
+ ("python-jaraco-classes" ,python-jaraco-classes)
+ ("python-pytest" ,python-pytest)
+ ("python-pytest-checkdocs"
+ ,python-pytest-checkdocs)
+ ("python-pytest-cov" ,python-pytest-cov)
+ ("python-pytest-flake8" ,python-pytest-flake8)
+ ("python-six" ,python-six)
+ ("python-setuptools-scm" ,python-setuptools-scm)))
+ (home-page
+ "https://github.com/jaraco/jaraco.functools")
+ (synopsis "Functools like those found in stdlib")
+ (description
+ "Functools like those found in stdlib")
+ (license #f)))
+
+(define-public python-jaraco-text
+ (package
+ (name "python-jaraco-text")
+ (version "3.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "jaraco.text" version))
+ (sha256
+ (base32
+ "1v0hz3h74m31jlbc5bxwkvrx1h2n7887bajrg1n1c3yc4q8qn1z5"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-jaraco-functools" ,python-jaraco-functools)
+ ("python-six" ,python-six)))
+ (native-inputs
+ `(("python-setuptools-scm" ,python-setuptools-scm)
+ ("python-pytest" ,python-pytest)
+ ("python-pytest-checkdocs"
+ ,python-pytest-checkdocs)
+ ("python-pytest-cov" ,python-pytest-cov)
+ ("python-pytest-flake8" ,python-pytest-flake8)))
+ (home-page
+ "https://github.com/jaraco/jaraco.text")
+ (synopsis "Module for text manipulation")
+ (description "Module for text manipulation")
+ (license #f)))
+
+(define-public python-pytest-testmon
+ (package
+ (name "python-pytest-testmon")
+ (version "1.0.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pytest-testmon" version))
+ (sha256
+ (base32
+ "1iasz23zrzjgbak8jiq12i4zmkk8f6dmcdhfxz8m2q03agcidc7x"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-coverage" ,python-coverage)
+ ("python-pytest" ,python-pytest)))
+ (home-page "https://testmon.org")
+ (synopsis
+ "selects tests affected by changed files and methods")
+ (description
+ "selects tests affected by changed files and methods")
+ (license #f)))
+
+(define-public python-pytest-watch
+ (package
+ (name "python-pytest-watch")
+ (version "4.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pytest-watch" version))
+ (sha256
+ (base32
+ "1fflnd3varpqy8yzcs451n8h7wmjyx1408qdin5p2qdksl1ny4q6"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-colorama" ,python-colorama)
+ ("python-docopt" ,python-docopt)
+ ("python-pytest" ,python-pytest)
+ ("python-watchdog" ,python-watchdog)))
+ (home-page
+ "http://github.com/joeyespo/pytest-watch")
+ (synopsis
+ "Local continuous test runner with pytest and watchdog.")
+ (description
+ "Local continuous test runner with pytest and watchdog.")
+ (license license:expat)))
+
+(define-public python-requests-unixsocket
+ (package
+ (name "python-requests-unixsocket")
+ (version "0.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "requests-unixsocket" version))
+ (sha256
+ (base32
+ "1sn12y4fw1qki5gxy9wg45gmdrxhrndwfndfjxhpiky3mwh1lp4y"))))
+ ;; why tied to waitress==0.9.0 I have no idea
+ (arguments
+ ;; We don't have all the test deps yet... missing pyttest-cache
+ `(#:tests? #f
+ #:phases
+ (modify-phases %standard-phases
+ ;; Not importing the googleapis package for now
+ (add-after 'unpack 'ignore-googleapis
+ (lambda _
+ (delete-file "test-requirements.txt")
+ #t)))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-requests" ,python-requests)
+ ("python-urllib3" ,python-urllib3)))
+ (native-inputs
+ `(("python-pbr-minimal" ,python-pbr-minimal)
+
+ ;; ("python-waitress" ,python-waitress)
+ ;; ("python-pep8" ,python-pep8)
+ ;; ("python-apipkg" ,python-apipkg)
+ ;; ("python-appdirs" ,python-appdirs)
+ ;; ("python-execnet" ,python-execnet)
+ ;; ("python-packaging" ,python-packaging)
+ ;; ("python-py" ,python-py)
+ ;; ("python-pyparsing" ,python-pyparsing))
+ ))
+ (home-page
+ "https://github.com/msabramo/requests-unixsocket")
+ (synopsis
+ "Use requests to talk HTTP via a UNIX domain socket")
+ (description
+ "Use requests to talk HTTP via a UNIX domain socket")
+ (license #f)))
+
+(define-public python-trustme
+ (package
+ (name "python-trustme")
+ (version "0.6.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "trustme" version))
+ (sha256
+ (base32
+ "0v3vr5z6apnfmklf07m45kv5kaqvm6hxrkaqywch57bjd2siiywx"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-cryptography" ,python-cryptography)
+ ("python-idna" ,python-idna)))
+ (home-page
+ "https://github.com/python-trio/trustme")
+ (synopsis
+ "#1 quality TLS certs while you wait, for the discerning tester")
+ (description
+ "#1 quality TLS certs while you wait, for the discerning tester")
+ (license #f)))
+
+#;(define-public python-pytest-black-multipy
+ (package
+ (name "python-pytest-black-multipy")
+ (version "1.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pytest-black-multipy" version))
+ (sha256
+ (base32
+ "1ciwa99fnz3ngbsvcjvxqz4k1vwfmvpxaj7qf5vxkx0awvczhsyd"))))
+ (build-system python-build-system)
+ (native-inputs
+ `(("python-pytest" ,python-pytest)
+ ("python-pytest-checkdocs"
+ ,python-pytest-checkdocs)
+ ("python-pytest-flake8" ,python-pytest-flake8)))
+ (home-page "https://github.com/jaraco/skeleton")
+ (synopsis "Allow '--black' on older Pythons")
+ (description "Allow '--black' on older Pythons")
+ (license #f)))
+
+(define-public python-cheroot
+ (package
+ (name "python-cheroot")
+ (version "8.3.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "cheroot" version))
+ (sha256
+ (base32
+ "0cc9cb5via001zkna0i2qp5s0bn1w327q6k7fba2f5v650gpwmx0"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-jaraco-functools" ,python-jaraco-functools)
+ ("python-more-itertools" ,python-more-itertools)
+ ("python-six" ,python-six)))
+ (arguments
+ ;; needs a newer pytest :\
+ `(#:tests? #f
+ ;; So we're also kicking out the dependency giving us
+ ;; trouble...
+ #:phases
+ (modify-phases %standard-phases
+ ;; Not importing the googleapis package for now
+ (add-after 'unpack 'ignore-googleapis
+ (lambda _
+ (substitute* "setup.py"
+ (("'python-pytest-testmon',") ""))
+ #t)))))
+ (native-inputs
+ `(("python-codecov" ,python-codecov)
+ ("python-colorama" ,python-colorama)
+ ("python-coverage" ,python-coverage)
+ ("python-jaraco-text" ,python-jaraco-text)
+ ("python-pyopenssl" ,python-pyopenssl)
+ ("python-pytest" ,python-pytest)
+ ("python-pytest-cov" ,python-pytest-cov)
+ ("python-pytest-mock" ,python-pytest-mock)
+ ("python-pytest-sugar" ,python-pytest-sugar)
+ ; ("python-pytest-testmon" ,python-pytest-testmon)
+ ("python-pytest-watch" ,python-pytest-watch)
+ ("python-pytest-xdist" ,python-pytest-xdist)
+ ("python-requests-unixsocket"
+ ,python-requests-unixsocket)
+ ("python-trustme" ,python-trustme)
+ ("python-urllib3" ,python-urllib3)
+ ("python-setuptools-scm-git-archive" ,python-setuptools-scm-git-archive)))
+ (home-page "https://cheroot.cherrypy.org")
+ (synopsis
+ "Highly-optimized, pure-python HTTP server")
+ (description
+ "Highly-optimized, pure-python HTTP server")
+ (license #f)))
+
+(define-public python-markdown2
+ (package
+ (name "python-markdown2")
+ (version "2.3.8")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "markdown2" version))
+ (sha256
+ (base32
+ "1gjxy3j7qgl0fzmdqd0jx0gv13s1z9n1g3fd3s72rh4nnc08xy3z"))))
+ (build-system python-build-system)
+ (home-page
+ "https://github.com/trentm/python-markdown2")
+ (synopsis
+ "A fast and complete Python implementation of Markdown")
+ (description
+ "A fast and complete Python implementation of Markdown")
+ (license license:expat)))
--
2.26.0
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [PATCH 1/10] gnu: Add python-jarco-classes.
2020-04-08 17:27 [bug#40511] Add fava, a beancount web UI Christopher Lemmer Webber
@ 2020-04-28 19:45 ` Christopher Lemmer Webber
2020-04-28 19:47 ` [bug#40511] [PATCH 2/10] gnu: Add python-jaraco-functools Christopher Lemmer Webber
` (8 more replies)
2024-03-19 9:55 ` bug#40511: Add fava, a beancount web UI Sharlatan Hellseher
1 sibling, 9 replies; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 19:45 UTC (permalink / raw)
To: 40511
[-- Attachment #1: Type: text/plain, Size: 111 bytes --]
Ok, new patch series! Broke up all the dependencies!
This might need a little work still but it's closer...
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-python-jarco-classes.patch --]
[-- Type: text/x-patch, Size: 2072 bytes --]
From 2891b384b0c18764d8f36b81c542ce45c4adb919 Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:18:20 -0400
Subject: [PATCH 01/10] gnu: Add python-jarco-classes.
* gnu/packages/python-xyz.scm (python-jarco-classes): New variable.
---
gnu/packages/python-xyz.scm | 38 +++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 31cafd47d1..5f333af9e3 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19588,3 +19588,41 @@ workspace...")
dependencies. It implements the @uref{http://opensoundcontrol.org/spec-1_0,
Open Sound Control 1.0} specification.")
(license license:unlicense)))
+
+(define-public python-jaraco-classes
+ (package
+ (name "python-jaraco.classes")
+ (version "3.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "jaraco.classes" version))
+ (sha256
+ (base32
+ "1avsxzm5mwylmy2zbxq3xvn48z5djb0qy3hwv4ryncprivzri1n3"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ ;; Not importing the googleapis package for now
+ (add-after 'unpack 'ignore-googleapis
+ (lambda _
+ (substitute* "setup.py"
+ (("'pytest-black-multipy',") ""))
+ #t)))))
+ (propagated-inputs
+ `(("python-more-itertools" ,python-more-itertools)))
+ (native-inputs
+ `(("python-pytest" ,python-pytest)
+ ("python-pytest-checkdocs" ,python-pytest-checkdocs)
+ ("python-pytest-cov" ,python-pytest-cov)
+ ("python-pytest-flake8" ,python-pytest-flake8)
+ ("python-setuptools-scm" ,python-setuptools-scm)))
+ (home-page
+ "https://github.com/jaraco/jaraco.classes")
+ (synopsis
+ "Utility functions for Python class constructs")
+ (description
+ "This package provides utility functions for Python class constructs.")
+ (license #f)))
+
--
2.26.0
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [PATCH 2/10] gnu: Add python-jaraco-functools.
2020-04-28 19:45 ` [bug#40511] [PATCH 1/10] gnu: Add python-jarco-classes Christopher Lemmer Webber
@ 2020-04-28 19:47 ` Christopher Lemmer Webber
2020-04-28 20:18 ` [bug#40511] [REDO 1] " Christopher Lemmer Webber
2020-04-28 19:47 ` [bug#40511] [PATCH 3/10] gnu: Add python-jarco-text Christopher Lemmer Webber
` (7 subsequent siblings)
8 siblings, 1 reply; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 19:47 UTC (permalink / raw)
To: 40511
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1: 0002-gnu-Add-python-jaraco-functools.patch --]
[-- Type: text/x-patch, Size: 2230 bytes --]
From d2099fba3733f8e8bb457f422095409b53c17d4a Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:19:04 -0400
Subject: [PATCH 02/10] gnu: Add python-jaraco-functools.
* gnu/packages/python-xyz.scm (python-jaraco-functools): New variable.
---
gnu/packages/python-xyz.scm | 40 +++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5f333af9e3..54a0ac36bd 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19626,3 +19626,43 @@ Open Sound Control 1.0} specification.")
"This package provides utility functions for Python class constructs.")
(license #f)))
+(define-public python-jaraco-functools
+ (package
+ (name "python-jaraco-functools")
+ (version "3.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "jaraco.functools" version))
+ (sha256
+ (base32
+ "15vd7x4jillggb8xcg3cm00j1v6llhl16r0rqm0l4n2lyahfxc2w"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ ;; Not importing the googleapis package for now
+ (add-after 'unpack 'ignore-googleapis
+ (lambda _
+ (substitute* "setup.py"
+ (("'pytest-black-multipy',") ""))
+ #t)))))
+ (propagated-inputs
+ `(("python-more-itertools" ,python-more-itertools)))
+ (native-inputs
+ `(("python-mock" ,python-mock)
+ ("python-jaraco-classes" ,python-jaraco-classes)
+ ("python-pytest" ,python-pytest)
+ ("python-pytest-checkdocs"
+ ,python-pytest-checkdocs)
+ ("python-pytest-cov" ,python-pytest-cov)
+ ("python-pytest-flake8" ,python-pytest-flake8)
+ ("python-six" ,python-six)
+ ("python-setuptools-scm" ,python-setuptools-scm)))
+ (home-page
+ "https://github.com/jaraco/jaraco.functools")
+ (synopsis "Functools like those found in stdlib")
+ (description
+ "This package provides functools like those found in stdlib.")
+ (license #f)))
+
--
2.26.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [PATCH 3/10] gnu: Add python-jarco-text.
2020-04-28 19:45 ` [bug#40511] [PATCH 1/10] gnu: Add python-jarco-classes Christopher Lemmer Webber
2020-04-28 19:47 ` [bug#40511] [PATCH 2/10] gnu: Add python-jaraco-functools Christopher Lemmer Webber
@ 2020-04-28 19:47 ` Christopher Lemmer Webber
2020-04-28 20:18 ` [bug#40511] [REDO 1] " Christopher Lemmer Webber
2020-04-28 19:48 ` [bug#40511] [PATCH 4/10] gnu: Add python-pytest-testmon Christopher Lemmer Webber
` (6 subsequent siblings)
8 siblings, 1 reply; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 19:47 UTC (permalink / raw)
To: 40511
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1: 0003-gnu-Add-python-jarco-text.patch --]
[-- Type: text/x-patch, Size: 1731 bytes --]
From 5b45a4cd2f10241ddd95e1d761dd9636a4c3cbc1 Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:20:54 -0400
Subject: [PATCH 03/10] gnu: Add python-jarco-text.
* gnu/packages/python-xyz.scm (python-jarco-text): New variable.
---
gnu/packages/python-xyz.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 54a0ac36bd..0a031baac2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19666,3 +19666,31 @@ Open Sound Control 1.0} specification.")
"This package provides functools like those found in stdlib.")
(license #f)))
+(define-public python-jaraco-text
+ (package
+ (name "python-jaraco-text")
+ (version "3.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "jaraco.text" version))
+ (sha256
+ (base32
+ "1v0hz3h74m31jlbc5bxwkvrx1h2n7887bajrg1n1c3yc4q8qn1z5"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-jaraco-functools" ,python-jaraco-functools)
+ ("python-six" ,python-six)))
+ (native-inputs
+ `(("python-setuptools-scm" ,python-setuptools-scm)
+ ("python-pytest" ,python-pytest)
+ ("python-pytest-checkdocs"
+ ,python-pytest-checkdocs)
+ ("python-pytest-cov" ,python-pytest-cov)
+ ("python-pytest-flake8" ,python-pytest-flake8)))
+ (home-page
+ "https://github.com/jaraco/jaraco.text")
+ (synopsis "Module for text manipulation")
+ (description "Python modules for text manipulation.")
+ (license #f)))
+
--
2.26.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [PATCH 4/10] gnu: Add python-pytest-testmon.
2020-04-28 19:45 ` [bug#40511] [PATCH 1/10] gnu: Add python-jarco-classes Christopher Lemmer Webber
2020-04-28 19:47 ` [bug#40511] [PATCH 2/10] gnu: Add python-jaraco-functools Christopher Lemmer Webber
2020-04-28 19:47 ` [bug#40511] [PATCH 3/10] gnu: Add python-jarco-text Christopher Lemmer Webber
@ 2020-04-28 19:48 ` Christopher Lemmer Webber
2020-04-28 20:19 ` [bug#40511] [REDO 1] " Christopher Lemmer Webber
2020-04-28 19:48 ` [bug#40511] [PATCH 5/10] gnu: Add python-pytest-watch Christopher Lemmer Webber
` (5 subsequent siblings)
8 siblings, 1 reply; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 19:48 UTC (permalink / raw)
To: 40511
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1: 0004-gnu-Add-python-pytest-testmon.patch --]
[-- Type: text/x-patch, Size: 1467 bytes --]
From 640ee423f25e1479ae8aa174acd6f1f0530a6325 Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:21:16 -0400
Subject: [PATCH 04/10] gnu: Add python-pytest-testmon.
* gnu/packages/python-xyz.scm (python-pytest-testmon): New variable.
---
gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0a031baac2..062dfe1d2b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19694,3 +19694,25 @@ Open Sound Control 1.0} specification.")
(description "Python modules for text manipulation.")
(license #f)))
+(define-public python-pytest-testmon
+ (package
+ (name "python-pytest-testmon")
+ (version "1.0.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pytest-testmon" version))
+ (sha256
+ (base32
+ "1iasz23zrzjgbak8jiq12i4zmkk8f6dmcdhfxz8m2q03agcidc7x"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-coverage" ,python-coverage)
+ ("python-pytest" ,python-pytest)))
+ (home-page "https://testmon.org")
+ (synopsis
+ "Selects tests affected by changed files and methods")
+ (description
+ "Pytest module for selecting tests affected by changed files and
+methods.")
+ (license #f)))
--
2.26.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [PATCH 5/10] gnu: Add python-pytest-watch.
2020-04-28 19:45 ` [bug#40511] [PATCH 1/10] gnu: Add python-jarco-classes Christopher Lemmer Webber
` (2 preceding siblings ...)
2020-04-28 19:48 ` [bug#40511] [PATCH 4/10] gnu: Add python-pytest-testmon Christopher Lemmer Webber
@ 2020-04-28 19:48 ` Christopher Lemmer Webber
2020-04-28 20:19 ` [bug#40511] [REDO 1] " Christopher Lemmer Webber
2020-04-28 19:48 ` [bug#40511] [PATCH 6/10] gnu: Add python-requests-unixsocket Christopher Lemmer Webber
` (4 subsequent siblings)
8 siblings, 1 reply; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 19:48 UTC (permalink / raw)
To: 40511
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0005-gnu-Add-python-pytest-watch.patch --]
[-- Type: text/x-patch, Size: 1570 bytes --]
From 517253fdc76d5e96ab631e08d6a230c5734f141a Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:21:36 -0400
Subject: [PATCH 05/10] gnu: Add python-pytest-watch.
* gnu/packages/python-xyz.scm (python-pytest-watch): New variable.
---
gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 062dfe1d2b..d9a972c456 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19716,3 +19716,29 @@ Open Sound Control 1.0} specification.")
"Pytest module for selecting tests affected by changed files and
methods.")
(license #f)))
+
+(define-public python-pytest-watch
+ (package
+ (name "python-pytest-watch")
+ (version "4.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pytest-watch" version))
+ (sha256
+ (base32
+ "1fflnd3varpqy8yzcs451n8h7wmjyx1408qdin5p2qdksl1ny4q6"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-colorama" ,python-colorama)
+ ("python-docopt" ,python-docopt)
+ ("python-pytest" ,python-pytest)
+ ("python-watchdog" ,python-watchdog)))
+ (home-page
+ "http://github.com/joeyespo/pytest-watch")
+ (synopsis
+ "Local continuous test runner for pytest and watchdog")
+ (description
+ "This package provides a local continuous test runner for pytest
+and watchdog.")
+ (license license:expat)))
--
2.26.0
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [PATCH 6/10] gnu: Add python-requests-unixsocket.
2020-04-28 19:45 ` [bug#40511] [PATCH 1/10] gnu: Add python-jarco-classes Christopher Lemmer Webber
` (3 preceding siblings ...)
2020-04-28 19:48 ` [bug#40511] [PATCH 5/10] gnu: Add python-pytest-watch Christopher Lemmer Webber
@ 2020-04-28 19:48 ` Christopher Lemmer Webber
2020-04-28 20:20 ` [bug#40511] [REDO 1] " Christopher Lemmer Webber
2020-04-28 19:49 ` [bug#40511] [PATCH 7/10] gnu: Add python-trustme Christopher Lemmer Webber
` (3 subsequent siblings)
8 siblings, 1 reply; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 19:48 UTC (permalink / raw)
To: 40511
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0006-gnu-Add-python-requests-unixsocket.patch --]
[-- Type: text/x-patch, Size: 1993 bytes --]
From 873652e761e8d59f8f2d80da1f9ad3d469013988 Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:22:01 -0400
Subject: [PATCH 06/10] gnu: Add python-requests-unixsocket.
* gnu/packages/python-xyz.scm (python-requests-unixsocket): New variable.
---
gnu/packages/python-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d9a972c456..2c354c8d71 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19742,3 +19742,39 @@ methods.")
"This package provides a local continuous test runner for pytest
and watchdog.")
(license license:expat)))
+
+(define-public python-requests-unixsocket
+ (package
+ (name "python-requests-unixsocket")
+ (version "0.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "requests-unixsocket" version))
+ (sha256
+ (base32
+ "1sn12y4fw1qki5gxy9wg45gmdrxhrndwfndfjxhpiky3mwh1lp4y"))))
+ ;; why tied to waitress==0.9.0 I have no idea
+ (arguments
+ ;; We don't have all the test deps yet... missing pyttest-cache
+ `(#:tests? #f
+ #:phases
+ (modify-phases %standard-phases
+ ;; Not importing the googleapis package for now
+ (add-after 'unpack 'ignore-googleapis
+ (lambda _
+ (delete-file "test-requirements.txt")
+ #t)))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-requests" ,python-requests)
+ ("python-urllib3" ,python-urllib3)))
+ (native-inputs
+ `(("python-pbr-minimal" ,python-pbr-minimal)))
+ (home-page
+ "https://github.com/msabramo/requests-unixsocket")
+ (synopsis
+ "Use requests to talk HTTP via a UNIX domain socket")
+ (description
+ "Use the Python requests library to talk HTTP via a UNIX domain socket.")
+ (license #f)))
--
2.26.0
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [PATCH 7/10] gnu: Add python-trustme.
2020-04-28 19:45 ` [bug#40511] [PATCH 1/10] gnu: Add python-jarco-classes Christopher Lemmer Webber
` (4 preceding siblings ...)
2020-04-28 19:48 ` [bug#40511] [PATCH 6/10] gnu: Add python-requests-unixsocket Christopher Lemmer Webber
@ 2020-04-28 19:49 ` Christopher Lemmer Webber
2020-04-28 20:20 ` [bug#40511] [REDO 1] " Christopher Lemmer Webber
2020-04-28 19:49 ` [bug#40511] [PATCH 8/10] gnu: Add python-cheroot Christopher Lemmer Webber
` (2 subsequent siblings)
8 siblings, 1 reply; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 19:49 UTC (permalink / raw)
To: 40511
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1: 0007-gnu-Add-python-trustme.patch --]
[-- Type: text/x-patch, Size: 1463 bytes --]
From bd5d7d55de0653cbde7776056c37d20999c94890 Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:22:18 -0400
Subject: [PATCH 07/10] gnu: Add python-trustme.
* gnu/packages/python-xyz.scm (python-trustme): New variable.
---
gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2c354c8d71..153463f7bd 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19778,3 +19778,26 @@ and watchdog.")
(description
"Use the Python requests library to talk HTTP via a UNIX domain socket.")
(license #f)))
+
+(define-public python-trustme
+ (package
+ (name "python-trustme")
+ (version "0.6.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "trustme" version))
+ (sha256
+ (base32
+ "0v3vr5z6apnfmklf07m45kv5kaqvm6hxrkaqywch57bjd2siiywx"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-cryptography" ,python-cryptography)
+ ("python-idna" ,python-idna)))
+ (home-page
+ "https://github.com/python-trio/trustme")
+ (synopsis
+ "Fake certificate authority for unit tests")
+ (description
+ "Provides fake a fake TLS certificate authority for Python unit tests.")
+ (license #f)))
--
2.26.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [PATCH 8/10] gnu: Add python-cheroot.
2020-04-28 19:45 ` [bug#40511] [PATCH 1/10] gnu: Add python-jarco-classes Christopher Lemmer Webber
` (5 preceding siblings ...)
2020-04-28 19:49 ` [bug#40511] [PATCH 7/10] gnu: Add python-trustme Christopher Lemmer Webber
@ 2020-04-28 19:49 ` Christopher Lemmer Webber
2020-04-28 20:21 ` [bug#40511] [REDO 1] " Christopher Lemmer Webber
2020-04-28 19:50 ` [bug#40511] [PATCH 9/10] gnu: Add python-markdown2 Christopher Lemmer Webber
2020-04-28 20:17 ` [bug#40511] [REDO 1] [PATCH 1/10] gnu: Add python-jarco-classes Christopher Lemmer Webber
8 siblings, 1 reply; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 19:49 UTC (permalink / raw)
To: 40511
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1: 0008-gnu-Add-python-cheroot.patch --]
[-- Type: text/x-patch, Size: 2799 bytes --]
From 3621878476cbfd083a39921bf1e090cb22b08d43 Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:22:40 -0400
Subject: [PATCH 08/10] gnu: Add python-cheroot.
* gnu/packages/python-xyz.scm (python-cheroot): New variable.
---
gnu/packages/python-xyz.scm | 53 +++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 153463f7bd..60839d646c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19801,3 +19801,56 @@ and watchdog.")
(description
"Provides fake a fake TLS certificate authority for Python unit tests.")
(license #f)))
+
+(define-public python-cheroot
+ (package
+ (name "python-cheroot")
+ (version "8.3.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "cheroot" version))
+ (sha256
+ (base32
+ "0cc9cb5via001zkna0i2qp5s0bn1w327q6k7fba2f5v650gpwmx0"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-jaraco-functools" ,python-jaraco-functools)
+ ("python-more-itertools" ,python-more-itertools)
+ ("python-six" ,python-six)))
+ (arguments
+ ;; needs a newer pytest :\
+ `(#:tests? #f
+ ;; So we're also kicking out the dependency giving us
+ ;; trouble...
+ #:phases
+ (modify-phases %standard-phases
+ ;; Not importing the googleapis package for now
+ (add-after 'unpack 'ignore-googleapis
+ (lambda _
+ (substitute* "setup.py"
+ (("'python-pytest-testmon',") ""))
+ #t)))))
+ (native-inputs
+ `(("python-codecov" ,python-codecov)
+ ("python-colorama" ,python-colorama)
+ ("python-coverage" ,python-coverage)
+ ("python-jaraco-text" ,python-jaraco-text)
+ ("python-pyopenssl" ,python-pyopenssl)
+ ("python-pytest" ,python-pytest)
+ ("python-pytest-cov" ,python-pytest-cov)
+ ("python-pytest-mock" ,python-pytest-mock)
+ ("python-pytest-sugar" ,python-pytest-sugar)
+ ("python-pytest-watch" ,python-pytest-watch)
+ ("python-pytest-xdist" ,python-pytest-xdist)
+ ("python-requests-unixsocket"
+ ,python-requests-unixsocket)
+ ("python-trustme" ,python-trustme)
+ ("python-urllib3" ,python-urllib3)
+ ("python-setuptools-scm-git-archive" ,python-setuptools-scm-git-archive)))
+ (home-page "https://cheroot.cherrypy.org")
+ (synopsis
+ "Pure-python HTTP server with an emphasis on performance")
+ (description
+ "Cheroot is the pure-Python HTTP server used by CherryPy.")
+ (license #f)))
--
2.26.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [PATCH 9/10] gnu: Add python-markdown2.
2020-04-28 19:45 ` [bug#40511] [PATCH 1/10] gnu: Add python-jarco-classes Christopher Lemmer Webber
` (6 preceding siblings ...)
2020-04-28 19:49 ` [bug#40511] [PATCH 8/10] gnu: Add python-cheroot Christopher Lemmer Webber
@ 2020-04-28 19:50 ` Christopher Lemmer Webber
2020-04-28 19:51 ` [bug#40511] [PATCH 10/10] gnu: Add fava Christopher Lemmer Webber
2020-04-28 20:21 ` [bug#40511] [REDO 1] [PATCH 9/10] gnu: Add python-markdown2 Christopher Lemmer Webber
2020-04-28 20:17 ` [bug#40511] [REDO 1] [PATCH 1/10] gnu: Add python-jarco-classes Christopher Lemmer Webber
8 siblings, 2 replies; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 19:50 UTC (permalink / raw)
To: 40511
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1: 0009-gnu-Add-python-markdown2.patch --]
[-- Type: text/x-patch, Size: 1420 bytes --]
From 0f1d8bbc93e0da5d8b5f94771dd52233a34db105 Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:22:54 -0400
Subject: [PATCH 09/10] gnu: Add python-markdown2.
* gnu/packages/python-xyz.scm (python-markdown2): New variable.
---
gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 60839d646c..3af73e62c4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19854,3 +19854,24 @@ and watchdog.")
(description
"Cheroot is the pure-Python HTTP server used by CherryPy.")
(license #f)))
+
+(define-public python-markdown2
+ (package
+ (name "python-markdown2")
+ (version "2.3.8")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "markdown2" version))
+ (sha256
+ (base32
+ "1gjxy3j7qgl0fzmdqd0jx0gv13s1z9n1g3fd3s72rh4nnc08xy3z"))))
+ (build-system python-build-system)
+ (home-page
+ "https://github.com/trentm/python-markdown2")
+ (synopsis
+ "A fast and complete Python implementation of Markdown")
+ (description
+ "A Python implementation of Markdown which aims to closely match
+the behavior of the original perl-implemented Markdown.pl.")
+ (license license:expat)))
--
2.26.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [PATCH 10/10] gnu: Add fava.
2020-04-28 19:50 ` [bug#40511] [PATCH 9/10] gnu: Add python-markdown2 Christopher Lemmer Webber
@ 2020-04-28 19:51 ` Christopher Lemmer Webber
2020-04-28 20:22 ` Christopher Lemmer Webber
2020-04-28 20:21 ` [bug#40511] [REDO 1] [PATCH 9/10] gnu: Add python-markdown2 Christopher Lemmer Webber
1 sibling, 1 reply; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 19:51 UTC (permalink / raw)
To: 40511
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1: 0010-gnu-Add-fava.patch --]
[-- Type: text/x-patch, Size: 2216 bytes --]
From 9614e1daf0ca1c43595bf6f1522121874f65b66a Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:39:25 -0400
Subject: [PATCH 10/10] gnu: Add fava.
* gnu/packages/finance.scm (fava): New variable.
---
gnu/packages/finance.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm
index c31b87ec19..2553980aaa 100644
--- a/gnu/packages/finance.scm
+++ b/gnu/packages/finance.scm
@@ -1594,3 +1594,42 @@ generate a variety of reports from them, and provides a web interface.")
(synopsis "Emacs mode for beancount")
(description
"Emacs-beancount is an Emacs mode for the Beancount accounting tool.")))
+
+(define-public fava
+ (package
+ (name "fava")
+ (version "1.14")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "fava" version))
+ (sha256
+ (base32
+ "181ypq2p7aaq2b76s55hxxbm1hykzf45mjjgm500h4dsaa167dqy"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("beancount" ,beancount)
+ ("python-babel" ,python-babel)
+ ("python-bottle" ,python-bottle)
+ ("python-cheroot" ,python-cheroot)
+ ("python-dateutil" ,python-dateutil)
+ ("python-click" ,python-click)
+ ("python-flask" ,python-flask)
+ ("python-flask-babel" ,python-flask-babel)
+ ("python-jinja2" ,python-jinja2)
+ ("python-lxml" ,python-lxml)
+ ("python-markdown2" ,python-markdown2)
+ ("python-magic" ,python-magic)
+ ("python-ply" ,python-ply)
+ ("python-simplejson" ,python-simplejson)
+ ("python-beautifulsoup4" ,python-beautifulsoup4)
+ ("python-werkzeug" ,python-werkzeug)))
+ (native-inputs
+ `(("python-setuptools-scm" ,python-setuptools-scm)
+ ("python-pytest" ,python-pytest)))
+ (home-page "https://beancount.github.io/fava/")
+ (synopsis
+ "Web interface for the accounting tool Beancount")
+ (description
+ "Fava is a web interface for the accounting tool Beancount.")
+ (license license:expat)))
--
2.26.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [REDO 1] [PATCH 1/10] gnu: Add python-jarco-classes.
2020-04-28 19:45 ` [bug#40511] [PATCH 1/10] gnu: Add python-jarco-classes Christopher Lemmer Webber
` (7 preceding siblings ...)
2020-04-28 19:50 ` [bug#40511] [PATCH 9/10] gnu: Add python-markdown2 Christopher Lemmer Webber
@ 2020-04-28 20:17 ` Christopher Lemmer Webber
8 siblings, 0 replies; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 20:17 UTC (permalink / raw)
To: 40511
[-- Attachment #1.1: Type: text/plain, Size: 66 bytes --]
grumble grumble forgot a bunch of license fields grumble grumble
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-gnu-Add-python-jarco-classes.patch --]
[-- Type: text/x-patch, Size: 2142 bytes --]
From 9949ba38f867846d231965864a133d13a791f343 Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:18:20 -0400
Subject: [PATCH 01/10] gnu: Add python-jarco-classes.
* gnu/packages/python-xyz.scm (python-jarco-classes): New variable.
---
gnu/packages/python-xyz.scm | 38 +++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 31cafd47d1..3998475c3d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19588,3 +19588,41 @@ workspace...")
dependencies. It implements the @uref{http://opensoundcontrol.org/spec-1_0,
Open Sound Control 1.0} specification.")
(license license:unlicense)))
+
+(define-public python-jaraco-classes
+ (package
+ (name "python-jaraco.classes")
+ (version "3.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "jaraco.classes" version))
+ (sha256
+ (base32
+ "1avsxzm5mwylmy2zbxq3xvn48z5djb0qy3hwv4ryncprivzri1n3"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ ;; Not importing the googleapis package for now
+ (add-after 'unpack 'ignore-googleapis
+ (lambda _
+ (substitute* "setup.py"
+ (("'pytest-black-multipy',") ""))
+ #t)))))
+ (propagated-inputs
+ `(("python-more-itertools" ,python-more-itertools)))
+ (native-inputs
+ `(("python-pytest" ,python-pytest)
+ ("python-pytest-checkdocs" ,python-pytest-checkdocs)
+ ("python-pytest-cov" ,python-pytest-cov)
+ ("python-pytest-flake8" ,python-pytest-flake8)
+ ("python-setuptools-scm" ,python-setuptools-scm)))
+ (home-page
+ "https://github.com/jaraco/jaraco.classes")
+ (synopsis
+ "Utility functions for Python class constructs")
+ (description
+ "This package provides utility functions for Python class constructs.")
+ (license license:expat)))
+
--
2.26.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [REDO 1] [PATCH 2/10] gnu: Add python-jaraco-functools.
2020-04-28 19:47 ` [bug#40511] [PATCH 2/10] gnu: Add python-jaraco-functools Christopher Lemmer Webber
@ 2020-04-28 20:18 ` Christopher Lemmer Webber
0 siblings, 0 replies; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 20:18 UTC (permalink / raw)
To: 40511
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1: 0002-gnu-Add-python-jaraco-functools.patch --]
[-- Type: text/x-patch, Size: 2252 bytes --]
From 7b6c006f28eb431df85967881e2d7309591c5afa Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:19:04 -0400
Subject: [PATCH 02/10] gnu: Add python-jaraco-functools.
* gnu/packages/python-xyz.scm (python-jaraco-functools): New variable.
---
gnu/packages/python-xyz.scm | 40 +++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 3998475c3d..8e0112883d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19626,3 +19626,43 @@ Open Sound Control 1.0} specification.")
"This package provides utility functions for Python class constructs.")
(license license:expat)))
+(define-public python-jaraco-functools
+ (package
+ (name "python-jaraco-functools")
+ (version "3.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "jaraco.functools" version))
+ (sha256
+ (base32
+ "15vd7x4jillggb8xcg3cm00j1v6llhl16r0rqm0l4n2lyahfxc2w"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ ;; Not importing the googleapis package for now
+ (add-after 'unpack 'ignore-googleapis
+ (lambda _
+ (substitute* "setup.py"
+ (("'pytest-black-multipy',") ""))
+ #t)))))
+ (propagated-inputs
+ `(("python-more-itertools" ,python-more-itertools)))
+ (native-inputs
+ `(("python-mock" ,python-mock)
+ ("python-jaraco-classes" ,python-jaraco-classes)
+ ("python-pytest" ,python-pytest)
+ ("python-pytest-checkdocs"
+ ,python-pytest-checkdocs)
+ ("python-pytest-cov" ,python-pytest-cov)
+ ("python-pytest-flake8" ,python-pytest-flake8)
+ ("python-six" ,python-six)
+ ("python-setuptools-scm" ,python-setuptools-scm)))
+ (home-page
+ "https://github.com/jaraco/jaraco.functools")
+ (synopsis "Functools like those found in stdlib")
+ (description
+ "This package provides functools like those found in stdlib.")
+ (license license:expat)))
+
--
2.26.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [REDO 1] [PATCH 3/10] gnu: Add python-jarco-text.
2020-04-28 19:47 ` [bug#40511] [PATCH 3/10] gnu: Add python-jarco-text Christopher Lemmer Webber
@ 2020-04-28 20:18 ` Christopher Lemmer Webber
0 siblings, 0 replies; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 20:18 UTC (permalink / raw)
To: 40511
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1: 0003-gnu-Add-python-jarco-text.patch --]
[-- Type: text/x-patch, Size: 1753 bytes --]
From cdd7cb93fb9000639377911c3bacaace664bf47d Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:20:54 -0400
Subject: [PATCH 03/10] gnu: Add python-jarco-text.
* gnu/packages/python-xyz.scm (python-jarco-text): New variable.
---
gnu/packages/python-xyz.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8e0112883d..b00c8cf284 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19666,3 +19666,31 @@ Open Sound Control 1.0} specification.")
"This package provides functools like those found in stdlib.")
(license license:expat)))
+(define-public python-jaraco-text
+ (package
+ (name "python-jaraco-text")
+ (version "3.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "jaraco.text" version))
+ (sha256
+ (base32
+ "1v0hz3h74m31jlbc5bxwkvrx1h2n7887bajrg1n1c3yc4q8qn1z5"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-jaraco-functools" ,python-jaraco-functools)
+ ("python-six" ,python-six)))
+ (native-inputs
+ `(("python-setuptools-scm" ,python-setuptools-scm)
+ ("python-pytest" ,python-pytest)
+ ("python-pytest-checkdocs"
+ ,python-pytest-checkdocs)
+ ("python-pytest-cov" ,python-pytest-cov)
+ ("python-pytest-flake8" ,python-pytest-flake8)))
+ (home-page
+ "https://github.com/jaraco/jaraco.text")
+ (synopsis "Module for text manipulation")
+ (description "Python modules for text manipulation.")
+ (license license:expat)))
+
--
2.26.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [REDO 1] [PATCH 4/10] gnu: Add python-pytest-testmon.
2020-04-28 19:48 ` [bug#40511] [PATCH 4/10] gnu: Add python-pytest-testmon Christopher Lemmer Webber
@ 2020-04-28 20:19 ` Christopher Lemmer Webber
0 siblings, 0 replies; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 20:19 UTC (permalink / raw)
To: 40511
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1: 0004-gnu-Add-python-pytest-testmon.patch --]
[-- Type: text/x-patch, Size: 1490 bytes --]
From 96433376d8c698acc263bd34abd485f0b81bc4f9 Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:21:16 -0400
Subject: [PATCH 04/10] gnu: Add python-pytest-testmon.
* gnu/packages/python-xyz.scm (python-pytest-testmon): New variable.
---
gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b00c8cf284..bcebf05813 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19694,3 +19694,25 @@ Open Sound Control 1.0} specification.")
(description "Python modules for text manipulation.")
(license license:expat)))
+(define-public python-pytest-testmon
+ (package
+ (name "python-pytest-testmon")
+ (version "1.0.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pytest-testmon" version))
+ (sha256
+ (base32
+ "1iasz23zrzjgbak8jiq12i4zmkk8f6dmcdhfxz8m2q03agcidc7x"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-coverage" ,python-coverage)
+ ("python-pytest" ,python-pytest)))
+ (home-page "https://testmon.org")
+ (synopsis
+ "Selects tests affected by changed files and methods")
+ (description
+ "Pytest module for selecting tests affected by changed files and
+methods.")
+ (license license:agpl3+)))
--
2.26.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [REDO 1] [PATCH 5/10] gnu: Add python-pytest-watch.
2020-04-28 19:48 ` [bug#40511] [PATCH 5/10] gnu: Add python-pytest-watch Christopher Lemmer Webber
@ 2020-04-28 20:19 ` Christopher Lemmer Webber
0 siblings, 0 replies; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 20:19 UTC (permalink / raw)
To: 40511
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1: 0005-gnu-Add-python-pytest-watch.patch --]
[-- Type: text/x-patch, Size: 1630 bytes --]
From 31fc8e533ba048ef407e5058b79fe0a3cfc65db4 Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:21:36 -0400
Subject: [PATCH 05/10] gnu: Add python-pytest-watch.
* gnu/packages/python-xyz.scm (python-pytest-watch): New variable.
---
gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index bcebf05813..bfbe7ef1e7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19716,3 +19716,29 @@ Open Sound Control 1.0} specification.")
"Pytest module for selecting tests affected by changed files and
methods.")
(license license:agpl3+)))
+
+(define-public python-pytest-watch
+ (package
+ (name "python-pytest-watch")
+ (version "4.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pytest-watch" version))
+ (sha256
+ (base32
+ "1fflnd3varpqy8yzcs451n8h7wmjyx1408qdin5p2qdksl1ny4q6"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-colorama" ,python-colorama)
+ ("python-docopt" ,python-docopt)
+ ("python-pytest" ,python-pytest)
+ ("python-watchdog" ,python-watchdog)))
+ (home-page
+ "http://github.com/joeyespo/pytest-watch")
+ (synopsis
+ "Local continuous test runner for pytest and watchdog")
+ (description
+ "This package provides a local continuous test runner for pytest
+and watchdog.")
+ (license license:expat)))
--
2.26.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [REDO 1] [PATCH 6/10] gnu: Add python-requests-unixsocket.
2020-04-28 19:48 ` [bug#40511] [PATCH 6/10] gnu: Add python-requests-unixsocket Christopher Lemmer Webber
@ 2020-04-28 20:20 ` Christopher Lemmer Webber
0 siblings, 0 replies; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 20:20 UTC (permalink / raw)
To: 40511
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0006-gnu-Add-python-requests-unixsocket.patch --]
[-- Type: text/x-patch, Size: 2005 bytes --]
From 9ca089c5abb29c054bb51f67c3d68090b839e262 Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:22:01 -0400
Subject: [PATCH 06/10] gnu: Add python-requests-unixsocket.
* gnu/packages/python-xyz.scm (python-requests-unixsocket): New variable.
---
gnu/packages/python-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index bfbe7ef1e7..70ff012fb6 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19742,3 +19742,39 @@ methods.")
"This package provides a local continuous test runner for pytest
and watchdog.")
(license license:expat)))
+
+(define-public python-requests-unixsocket
+ (package
+ (name "python-requests-unixsocket")
+ (version "0.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "requests-unixsocket" version))
+ (sha256
+ (base32
+ "1sn12y4fw1qki5gxy9wg45gmdrxhrndwfndfjxhpiky3mwh1lp4y"))))
+ ;; why tied to waitress==0.9.0 I have no idea
+ (arguments
+ ;; We don't have all the test deps yet... missing pyttest-cache
+ `(#:tests? #f
+ #:phases
+ (modify-phases %standard-phases
+ ;; Not importing the googleapis package for now
+ (add-after 'unpack 'ignore-googleapis
+ (lambda _
+ (delete-file "test-requirements.txt")
+ #t)))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-requests" ,python-requests)
+ ("python-urllib3" ,python-urllib3)))
+ (native-inputs
+ `(("python-pbr-minimal" ,python-pbr-minimal)))
+ (home-page
+ "https://github.com/msabramo/requests-unixsocket")
+ (synopsis
+ "Use requests to talk HTTP via a UNIX domain socket")
+ (description
+ "Use the Python requests library to talk HTTP via a UNIX domain socket.")
+ (license license:asl2.0)))
--
2.26.0
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [REDO 1] [PATCH 7/10] gnu: Add python-trustme.
2020-04-28 19:49 ` [bug#40511] [PATCH 7/10] gnu: Add python-trustme Christopher Lemmer Webber
@ 2020-04-28 20:20 ` Christopher Lemmer Webber
0 siblings, 0 replies; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 20:20 UTC (permalink / raw)
To: 40511
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1: 0007-gnu-Add-python-trustme.patch --]
[-- Type: text/x-patch, Size: 1487 bytes --]
From 7ee9609dbe202a7fa2199c659ef8469415b283b2 Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:22:18 -0400
Subject: [PATCH 07/10] gnu: Add python-trustme.
* gnu/packages/python-xyz.scm (python-trustme): New variable.
---
gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 70ff012fb6..a6d86cbc50 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19778,3 +19778,26 @@ and watchdog.")
(description
"Use the Python requests library to talk HTTP via a UNIX domain socket.")
(license license:asl2.0)))
+
+(define-public python-trustme
+ (package
+ (name "python-trustme")
+ (version "0.6.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "trustme" version))
+ (sha256
+ (base32
+ "0v3vr5z6apnfmklf07m45kv5kaqvm6hxrkaqywch57bjd2siiywx"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-cryptography" ,python-cryptography)
+ ("python-idna" ,python-idna)))
+ (home-page
+ "https://github.com/python-trio/trustme")
+ (synopsis
+ "Fake certificate authority for unit tests")
+ (description
+ "Provides fake a fake TLS certificate authority for Python unit tests.")
+ (license license:asl2.0)))
--
2.26.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [REDO 1] [PATCH 8/10] gnu: Add python-cheroot.
2020-04-28 19:49 ` [bug#40511] [PATCH 8/10] gnu: Add python-cheroot Christopher Lemmer Webber
@ 2020-04-28 20:21 ` Christopher Lemmer Webber
0 siblings, 0 replies; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 20:21 UTC (permalink / raw)
To: 40511
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0008-gnu-Add-python-cheroot.patch --]
[-- Type: text/x-patch, Size: 2747 bytes --]
From fd6a8ecaf8d6ee39fbd01188950fd8235de72842 Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:22:40 -0400
Subject: [PATCH 08/10] gnu: Add python-cheroot.
* gnu/packages/python-xyz.scm (python-cheroot): New variable.
---
gnu/packages/python-xyz.scm | 53 +++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a6d86cbc50..d3b0b61441 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19801,3 +19801,56 @@ and watchdog.")
(description
"Provides fake a fake TLS certificate authority for Python unit tests.")
(license license:asl2.0)))
+
+(define-public python-cheroot
+ (package
+ (name "python-cheroot")
+ (version "8.3.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "cheroot" version))
+ (sha256
+ (base32
+ "0cc9cb5via001zkna0i2qp5s0bn1w327q6k7fba2f5v650gpwmx0"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-jaraco-functools" ,python-jaraco-functools)
+ ("python-more-itertools" ,python-more-itertools)
+ ("python-six" ,python-six)))
+ (arguments
+ ;; needs a newer pytest :\
+ `(#:tests? #f
+ ;; So we're also kicking out the dependency giving us
+ ;; trouble...
+ #:phases
+ (modify-phases %standard-phases
+ ;; Not importing the googleapis package for now
+ (add-after 'unpack 'ignore-googleapis
+ (lambda _
+ (substitute* "setup.py"
+ (("'python-pytest-testmon',") ""))
+ #t)))))
+ (native-inputs
+ `(("python-codecov" ,python-codecov)
+ ("python-colorama" ,python-colorama)
+ ("python-coverage" ,python-coverage)
+ ("python-jaraco-text" ,python-jaraco-text)
+ ("python-pyopenssl" ,python-pyopenssl)
+ ("python-pytest" ,python-pytest)
+ ("python-pytest-cov" ,python-pytest-cov)
+ ("python-pytest-mock" ,python-pytest-mock)
+ ("python-pytest-sugar" ,python-pytest-sugar)
+ ("python-pytest-watch" ,python-pytest-watch)
+ ("python-pytest-xdist" ,python-pytest-xdist)
+ ("python-requests-unixsocket"
+ ,python-requests-unixsocket)
+ ("python-trustme" ,python-trustme)
+ ("python-urllib3" ,python-urllib3)
+ ("python-setuptools-scm-git-archive" ,python-setuptools-scm-git-archive)))
+ (home-page "https://cheroot.cherrypy.org")
+ (synopsis
+ "Pure-python HTTP server with an emphasis on performance")
+ (description
+ "Cheroot is the pure-Python HTTP server used by CherryPy.")
+ (license license:bsd-3)))
--
2.26.0
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [REDO 1] [PATCH 9/10] gnu: Add python-markdown2.
2020-04-28 19:50 ` [bug#40511] [PATCH 9/10] gnu: Add python-markdown2 Christopher Lemmer Webber
2020-04-28 19:51 ` [bug#40511] [PATCH 10/10] gnu: Add fava Christopher Lemmer Webber
@ 2020-04-28 20:21 ` Christopher Lemmer Webber
1 sibling, 0 replies; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 20:21 UTC (permalink / raw)
To: 40511
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0009-gnu-Add-python-markdown2.patch --]
[-- Type: text/x-patch, Size: 1388 bytes --]
From 6846e2fd1411d24a85d83a339e57218e9f190de4 Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Tue, 28 Apr 2020 15:22:54 -0400
Subject: [PATCH 09/10] gnu: Add python-markdown2.
* gnu/packages/python-xyz.scm (python-markdown2): New variable.
---
gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d3b0b61441..799d54c19c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19854,3 +19854,24 @@ and watchdog.")
(description
"Cheroot is the pure-Python HTTP server used by CherryPy.")
(license license:bsd-3)))
+
+(define-public python-markdown2
+ (package
+ (name "python-markdown2")
+ (version "2.3.8")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "markdown2" version))
+ (sha256
+ (base32
+ "1gjxy3j7qgl0fzmdqd0jx0gv13s1z9n1g3fd3s72rh4nnc08xy3z"))))
+ (build-system python-build-system)
+ (home-page
+ "https://github.com/trentm/python-markdown2")
+ (synopsis
+ "A fast and complete Python implementation of Markdown")
+ (description
+ "A Python implementation of Markdown which aims to closely match
+the behavior of the original perl-implemented Markdown.pl.")
+ (license license:expat)))
--
2.26.0
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [bug#40511] [PATCH 10/10] gnu: Add fava.
2020-04-28 19:51 ` [bug#40511] [PATCH 10/10] gnu: Add fava Christopher Lemmer Webber
@ 2020-04-28 20:22 ` Christopher Lemmer Webber
0 siblings, 0 replies; 22+ messages in thread
From: Christopher Lemmer Webber @ 2020-04-28 20:22 UTC (permalink / raw)
To: 40511
And finally, patch 10 doesn't need any fixes to it, so it's the same as
last time.
That sure was annoying, but at least I learned how to use Magit's "edit"
rebase tool.
^ permalink raw reply [flat|nested] 22+ messages in thread
* bug#40511: Add fava, a beancount web UI
2020-04-08 17:27 [bug#40511] Add fava, a beancount web UI Christopher Lemmer Webber
2020-04-28 19:45 ` [bug#40511] [PATCH 1/10] gnu: Add python-jarco-classes Christopher Lemmer Webber
@ 2024-03-19 9:55 ` Sharlatan Hellseher
1 sibling, 0 replies; 22+ messages in thread
From: Sharlatan Hellseher @ 2024-03-19 9:55 UTC (permalink / raw)
To: 40511-done
[-- Attachment #1: Type: text/plain, Size: 156 bytes --]
Hi,
Fava was added by applying some of the patches from
<https://issues.guix.gnu.org/60238> and pushed as 228c55cbf0..044d3f4bef
to master.
Thanks,
Oleg
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
end of thread, other threads:[~2024-03-19 9:57 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-08 17:27 [bug#40511] Add fava, a beancount web UI Christopher Lemmer Webber
2020-04-28 19:45 ` [bug#40511] [PATCH 1/10] gnu: Add python-jarco-classes Christopher Lemmer Webber
2020-04-28 19:47 ` [bug#40511] [PATCH 2/10] gnu: Add python-jaraco-functools Christopher Lemmer Webber
2020-04-28 20:18 ` [bug#40511] [REDO 1] " Christopher Lemmer Webber
2020-04-28 19:47 ` [bug#40511] [PATCH 3/10] gnu: Add python-jarco-text Christopher Lemmer Webber
2020-04-28 20:18 ` [bug#40511] [REDO 1] " Christopher Lemmer Webber
2020-04-28 19:48 ` [bug#40511] [PATCH 4/10] gnu: Add python-pytest-testmon Christopher Lemmer Webber
2020-04-28 20:19 ` [bug#40511] [REDO 1] " Christopher Lemmer Webber
2020-04-28 19:48 ` [bug#40511] [PATCH 5/10] gnu: Add python-pytest-watch Christopher Lemmer Webber
2020-04-28 20:19 ` [bug#40511] [REDO 1] " Christopher Lemmer Webber
2020-04-28 19:48 ` [bug#40511] [PATCH 6/10] gnu: Add python-requests-unixsocket Christopher Lemmer Webber
2020-04-28 20:20 ` [bug#40511] [REDO 1] " Christopher Lemmer Webber
2020-04-28 19:49 ` [bug#40511] [PATCH 7/10] gnu: Add python-trustme Christopher Lemmer Webber
2020-04-28 20:20 ` [bug#40511] [REDO 1] " Christopher Lemmer Webber
2020-04-28 19:49 ` [bug#40511] [PATCH 8/10] gnu: Add python-cheroot Christopher Lemmer Webber
2020-04-28 20:21 ` [bug#40511] [REDO 1] " Christopher Lemmer Webber
2020-04-28 19:50 ` [bug#40511] [PATCH 9/10] gnu: Add python-markdown2 Christopher Lemmer Webber
2020-04-28 19:51 ` [bug#40511] [PATCH 10/10] gnu: Add fava Christopher Lemmer Webber
2020-04-28 20:22 ` Christopher Lemmer Webber
2020-04-28 20:21 ` [bug#40511] [REDO 1] [PATCH 9/10] gnu: Add python-markdown2 Christopher Lemmer Webber
2020-04-28 20:17 ` [bug#40511] [REDO 1] [PATCH 1/10] gnu: Add python-jarco-classes Christopher Lemmer Webber
2024-03-19 9:55 ` bug#40511: Add fava, a beancount web UI Sharlatan Hellseher
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).