summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortechchud <protrude_paying969@simplelogin.com>2026-01-02 05:16:32 -0600
committertechchud <protrude_paying969@simplelogin.com>2026-01-02 05:16:32 -0600
commit8df37333273e24548433c823667fed0c0905e3be (patch)
treeecce4e43dd236174c7aa51739666fe9e3391cc6c
parentbe764bf7444bfefd8c18322412febbc600814cce (diff)
downloadguix-techchud-8df37333273e24548433c823667fed0c0905e3be.tar.gz
guix-techchud-8df37333273e24548433c823667fed0c0905e3be.tar.bz2
guix-techchud-8df37333273e24548433c823667fed0c0905e3be.zip
fix sherlock compiling
-rw-r--r--sherlock.scm39
1 files 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)))