diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-10-28 15:03:57 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-29 16:17:27 +0000 |
| commit | a3ee84ac8f9ec96dc11d0ceb8ceb220d8628474e (patch) | |
| tree | 6aeca53e0ed9db70dd89f8f58ab4e273f91f2d2f /gnu/packages | |
| parent | 85d3a248430f037c2d9d6736349c23e775fcd697 (diff) | |
gnu: python-pymacaroons: Update to 0.13.0-0.78c55c1.
* gnu/packages/python-xyz.scm (python-pymacaroons): Update to 0.13.0-0.78c55c1.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[arguments]<#:test-flags>: Ignore failing test.
[native-inputs]: Add python-hypothesis, python-mock, python-pytest,
python-setuptools.
[propagated-inputs]: Remove python-six.
Change-Id: Idd9f6993586f930c0666982ba126ca41c2a7e260
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 31 |
1 files changed, 24 insertions, 7 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 784ef0e38fb..30ea30a98cb 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -30493,16 +30493,33 @@ key. (define-public python-pymacaroons (package (name "python-pymacaroons") - (version "0.13.0") + (properties '((commit . "78c55c1d33a0b23ddc71140a9c999f957d79e9dd") + (revision . "0"))) + (version (git-version "0.13.0" + (assoc-ref properties 'revision) + (assoc-ref properties 'commit))) (source (origin - (method url-fetch) - (uri (pypi-uri "pymacaroons" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/ecordell/pymacaroons") + (commit (assoc-ref properties 'commit)))) + (file-name (git-file-name name version)) (sha256 - (base32 "1f0357a6g1h96sk6wy030xmc1p4rd80a999qvxd28v7nlm1blsqy")))) - (build-system python-build-system) - (propagated-inputs - (list python-six python-pynacl)) + (base32 "0ybdxlx6crb7l850dzz50arqrm4d4dl5dvzlf8f7sdhdcn2lgr7m")))) + (build-system pyproject-build-system) + (arguments + (list + #:test-flags + ;; XXX: Despite python-hypothesis, ModuleNotFoundError: + ;; No module named 'hypothesis.specifiers' + #~(list "--ignore=tests/property_tests/macaroon_property_tests.py"))) + (native-inputs + (list python-hypothesis + python-mock + python-pytest + python-setuptools)) + (propagated-inputs (list python-pynacl)) (home-page "https://github.com/ecordell/pymacaroons") (synopsis "Python Macaroon Library") (description |
