summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-08-05 10:07:48 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:30 +0100
commit9ef52063c1675b440d4375ddac521a1cedf30918 (patch)
tree63a91da606538f589d043c85aa8373ea885edc9c /gnu/packages/python-web.scm
parentae00ced550b08172a480747f5b5dc1146584f2a8 (diff)
gnu: python-praw: Update to 8.0.2.
* gnu/packages/python-web.scm (python-praw): Update to 8.0.2. [native-inputs]: Replace python-flit-core by python-hatchling. Add nss-certs-for-test, python-vcrpy. [propagated-inputs]: Add python-defusedxml. Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm17
1 files changed, 11 insertions, 6 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 6851fe9dd8c..a147f060f6a 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -2571,7 +2571,7 @@ the command line.")
2571(define-public python-praw 2571(define-public python-praw
2572 (package 2572 (package
2573 (name "python-praw") 2573 (name "python-praw")
2574 (version "7.8.1") 2574 (version "8.0.2")
2575 (source 2575 (source
2576 (origin 2576 (origin
2577 (method git-fetch) 2577 (method git-fetch)
@@ -2580,7 +2580,7 @@ the command line.")
2580 (commit (string-append "v" version)))) 2580 (commit (string-append "v" version))))
2581 (file-name (git-file-name name version)) 2581 (file-name (git-file-name name version))
2582 (sha256 2582 (sha256
2583 (base32 "05qq43l4334cq8r8k731qnb45nq12vvfdxwbr6q84a1hafp7n4cg")))) 2583 (base32 "15kwvkc6ag83p3mrfnq6ffyvbw4d3njx0dl0vv00y7724b2rpqxw"))))
2584 (build-system pyproject-build-system) 2584 (build-system pyproject-build-system)
2585 (arguments 2585 (arguments
2586 (list #:test-flags 2586 (list #:test-flags
@@ -2589,12 +2589,17 @@ the command line.")
2589 "--ignore=tests/unit/test_config.py" 2589 "--ignore=tests/unit/test_config.py"
2590 "--ignore=tests/integration/test_reddit.py"))) 2590 "--ignore=tests/integration/test_reddit.py")))
2591 (native-inputs 2591 (native-inputs
2592 (list python-betamax 2592 (list nss-certs-for-test
2593 python-betamax
2593 python-betamax-matchers 2594 python-betamax-matchers
2594 python-flit-core 2595 python-hatchling
2595 python-pytest)) 2596 python-pytest
2597 python-vcrpy))
2596 (propagated-inputs 2598 (propagated-inputs
2597 (list python-prawcore python-update-checker python-websocket-client)) 2599 (list python-defusedxml
2600 python-prawcore
2601 python-update-checker
2602 python-websocket-client))
2598 (synopsis "Python Reddit API Wrapper") 2603 (synopsis "Python Reddit API Wrapper")
2599 (description "PRAW is a Python package that allows for simple access to 2604 (description "PRAW is a Python package that allows for simple access to
2600Reddit’s API. It aims to be easy to use and internally follows all of Reddit’s 2605Reddit’s API. It aims to be easy to use and internally follows all of Reddit’s