me
/
guix
Archived
1
0
Fork 0

gnu: Add python-simplesoapy.

* gnu/packages/radio.scm (python-simplesoapy): New variable.
master
Guillaume Le Vaillant 2022-09-28 09:36:53 +02:00
parent 70a593242e
commit 6262801bb2
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 20 additions and 0 deletions

View File

@ -468,6 +468,26 @@ controls for certain tuners which may be paired with an audio device.")
"This package provides RTL-SDR devices support to the SoapySDR library.")
(license license:expat)))
(define-public python-simplesoapy
(package
(name "python-simplesoapy")
(version "1.5.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "SimpleSoapy" version))
(sha256
(base32 "0bh02m5zj82mp7sxpvwr24ylmrbp3p4r9q7psqcfnxl628w3b4hl"))))
(build-system python-build-system)
(propagated-inputs
(list python-numpy soapysdr))
(home-page "https://github.com/xmikos/simplesoapy")
(synopsis "Python wrapper for SoapySDR")
(description
"This package provide a simple pythonic wrapper for the SoapySDR
library.")
(license license:expat)))
(define-public aptdec
;; No release since 2013, use commit directly.
(let ((commit "51405971fd4e97714d1e987269e49c6edfe4e0da")