diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:07 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:07 -0500 |
commit | fd384c259af93ab090395cb7d5f9c80f6e521eb9 (patch) | |
tree | 90d131da104958a6759c94f0457e08c613f883e9 | |
parent | 54179a25f488dddee89365debe6270a637ba7c31 (diff) | |
download | guix-techchud-fd384c259af93ab090395cb7d5f9c80f6e521eb9.tar.gz guix-techchud-fd384c259af93ab090395cb7d5f9c80f6e521eb9.tar.bz2 guix-techchud-fd384c259af93ab090395cb7d5f9c80f6e521eb9.zip |
fix python requests futures again with updated pyflaeks
-rw-r--r-- | sherlock.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sherlock.scm b/sherlock.scm index 2b4875a..1482efc 100644 --- a/sherlock.scm +++ b/sherlock.scm @@ -121,3 +121,20 @@ (description "Hunt down social media accounts by username across social networks.") (license expat))) +(define-public python-pyflakes + (package + (name "python-pyflakes") + (version "3.3.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pyflakes" version)) + (sha256 + (base32 "0sspm7kgdrw9g4a1dn767d2idghnmiqi2y5gzbfabywpggc63zbd")))) + (build-system pyproject-build-system) + (native-inputs (list python-setuptools python-wheel)) + (home-page "https://github.com/PyCQA/pyflakes") + (synopsis "passive checker of Python programs") + (description "passive checker of Python programs.") + (license expat))) + |