diff options
author | Bruno Victal <mirai@makinata.eu> | 2023-03-14 18:27:07 +0000 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-04-03 18:52:07 +0200 |
commit | 42670a54ced873e13045d6c11e60ba59252312e5 (patch) | |
tree | 3e576f6426487a394c28acbeac285522db9484b4 | |
parent | b302794f17e7c142f87bbcfec03cafa54bee5096 (diff) | |
download | guix-42670a54ced873e13045d6c11e60ba59252312e5.tar.gz guix-42670a54ced873e13045d6c11e60ba59252312e5.zip |
gnu: python-debian: Update to 0.1.49.
* gnu/packages/python-xyz.scm (python-debian): Update to 0.1.49.
[native-inputs]: Add python-pytest.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/python-xyz.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f034dc03f8..052de83e54 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -13869,7 +13869,7 @@ Python.") (package (name "python-debian") (home-page "https://salsa.debian.org/python-debian-team/python-debian") - (version "0.1.36") + (version "0.1.49") (source (origin ;; Use git-fetch, as pypi doesn't include test suite. @@ -13880,7 +13880,7 @@ Python.") (file-name (git-file-name name version)) (sha256 (base32 - "0qy6x28bj6yfikhjww932v5xq4mf5bm1iczl7acy4c7zm6mwhqfa")) + "190vy2ns0650icpwvv4qp6kr3c3i9jszy1vkdwpigxb96fs1bqf3")) (modules '((guix build utils))) (snippet #~(begin @@ -13896,6 +13896,8 @@ Python.") (substitute* "lib/debian/_version.py" (("__CHANGELOG_VERSION__") #$version)))))) (build-system python-build-system) + (native-inputs + (list python-pytest)) (propagated-inputs (list python-six python-chardet)) (synopsis "Debian package related modules") |