diff options
Diffstat (limited to 'sherlock.scm')
-rw-r--r-- | sherlock.scm | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/sherlock.scm b/sherlock.scm index a6f787a..1482efc 100644 --- a/sherlock.scm +++ b/sherlock.scm @@ -40,6 +40,8 @@ python-pytest-cov ;python-pytest-network python-readme-renderer + python-setuptools + python-wheel python-twine)) (home-page "https://github.com/ross/requests-futures") (synopsis "Asynchronous Python HTTP for Humans.") @@ -73,7 +75,10 @@ (sha256 (base32 "10mf9p6r4wwk9m50jh5bpmvsnymkmn3wfqs30dx8vagx7zmd8i9p")))) (build-system pyproject-build-system) - (propagated-inputs (list python-pysocks python-requests python-stem)) + (propagated-inputs (list python-pysocks python-requests python-stem + python-setuptools + python-wheel + )) (home-page "http://github.com/erdiaker/torrequest") (synopsis "A simple interface for HTTP(s) requests over Tor") (description @@ -116,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))) + |