summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranz Geffke <franz@pantherx.org>2024-02-22 19:05:43 +0000
committerFranz Geffke <franz@pantherx.org>2024-02-22 19:05:43 +0000
commit2c73686f0935ffd5461e4adbc52ae57a9ae45fc0 (patch)
tree9dd7d930c18de1bb8828989b459b9cdc4f463fcf
parent83abc74b1b558974230508c3498b9c3c624aaf7b (diff)
px-python-shared: adapt inputs
-rw-r--r--px/packages/device.scm21
-rw-r--r--px/packages/python-xyz.scm7
2 files changed, 4 insertions, 24 deletions
diff --git a/px/packages/device.scm b/px/packages/device.scm
index a358494..baf9098 100644
--- a/px/packages/device.scm
+++ b/px/packages/device.scm
@@ -405,27 +405,6 @@ configuration file from commandline args and upload results to the server")
"Background service for Bluetooth device discovery, data retrieval and submission")
(license license:expat)))
-(define-public px-python-shared
- (package
- (name "px-python-shared")
- (version "0.0.1")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://source.pantherx.org/" name "_v" version
- ".tgz"))
- (sha256
- (base32 "1aj7d4r3d2w7v9igyfqiyay2zp2d5scsz0n0hkd363prbb35qhzk"))))
- (build-system python-build-system)
- (inputs `(("python-requests" ,python-requests)))
- (native-inputs `(("pkg-config" ,pkg-config)))
- (propagated-inputs `(("px-device-identity" ,px-device-identity)))
- (home-page "https://www.pantherx.org/")
- (synopsis "Stuff that's shared across px-projects.")
- (description
- "Stuff that's shared across px-python-projects.")
- (license license:expat)))
-
(define-public sysinfo-daemon
(package
(name "sysinfo-daemon")
diff --git a/px/packages/python-xyz.scm b/px/packages/python-xyz.scm
index 162bea1..3429a52 100644
--- a/px/packages/python-xyz.scm
+++ b/px/packages/python-xyz.scm
@@ -2,6 +2,7 @@
#:use-module ((guix licenses)
#:prefix license:)
#:use-module (guix download)
+ #:use-module (guix gexp)
#:use-module (guix git-download)
#:use-module (guix packages)
#:use-module (guix build-system gnu)
@@ -889,15 +890,15 @@ communicating with your Coldcard over USB")
(uri (string-append "https://source.pantherx.org/" name "_v" version
".tgz"))
(sha256
- (base32 "18cm0wpvc1hxs8v80v220kjws5wll4c1jl47zbwrw492y2sczakz"))))
+ (base32 "1aj7d4r3d2w7v9igyfqiyay2zp2d5scsz0n0hkd363prbb35qhzk"))))
(build-system python-build-system)
(arguments
(list #:tests? #f
#:phases
#~(modify-phases %standard-phases
(delete 'sanity-check))))
- (native-inputs
- (list python-requests))
+ (native-inputs `(("pkg-config" ,pkg-config)))
+ (propagated-inputs `(("python-requests" ,python-requests)))
(home-page "https://www.pantherx.org/")
(synopsis "Stuff that's shared across px-projects.")
(description "Stuff like well known applications that's shared across px-projects.")