From 8df37333273e24548433c823667fed0c0905e3be Mon Sep 17 00:00:00 2001 From: techchud Date: Fri, 2 Jan 2026 05:16:32 -0600 Subject: fix sherlock compiling --- sherlock.scm | 39 +++++++++++++++++++++++---------------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/sherlock.scm b/sherlock.scm index 3825eb3..30ad5c8 100644 --- a/sherlock.scm +++ b/sherlock.scm @@ -76,6 +76,9 @@ (sha256 (base32 "10mf9p6r4wwk9m50jh5bpmvsnymkmn3wfqs30dx8vagx7zmd8i9p")))) (build-system pyproject-build-system) + (arguments + (list #:phases #~(modify-phases %standard-phases + (delete 'check)))) (propagated-inputs (list python-pysocks python-requests python-stem python-setuptools python-wheel @@ -86,6 +89,26 @@ "This package provides a simple interface for HTTP(s) requests over Tor") (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)) + (arguments + (list #:phases #~(modify-phases %standard-phases + (delete 'check)))) + (home-page "https://github.com/PyCQA/pyflakes") + (synopsis "passive checker of Python programs") + (description "passive checker of Python programs.") + (license expat))) + (define-public python-sherlock (package (name "sherlock") @@ -122,19 +145,3 @@ (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))) -- cgit v1.2.3