~ruther/guix-local

e1a9ae4b22fba4f37362ac9fcff0e028e060c7d4 — Nicolas Graves 2 months ago a881def
gnu: stig: Update to 0.14.1a0.

* gnu/packages/bittorrent.scm (stig): Update to 0.14.1a0.
[build-system]: Relocate field, switch to pyproject-build-system.
[arguments]: Relocate field, improve style.
[native-inputs]: Add python-setuptools.
[description]: Improve style.

Change-Id: I12a868709901cf874c2795c71ed81c6198cfd75b
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 16 insertions(+), 13 deletions(-)

M gnu/packages/bittorrent.scm
M gnu/packages/bittorrent.scm => gnu/packages/bittorrent.scm +16 -13
@@ 226,7 226,7 @@ of the Transmission BitTorrent client, using its HTTP RPC protocol.")
(define-public stig
  (package
    (name "stig")
    (version "0.14.0a0")
    (version "0.14.1a0")
    (source
     (origin
       (method git-fetch)


@@ 235,7 235,18 @@ of the Transmission BitTorrent client, using its HTTP RPC protocol.")
              (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1jfcgncva94pyzjifar1l6wlmb7aylg0l4fxljc83rkbj1a2aan0"))))
        (base32 "0196brcasdyn0mx3h2cqlgrx8x9fyv2n7bmx13nj58vnf3y4c1hg"))))
    (build-system pyproject-build-system)
    (arguments
     (list
      #:tests? #f ;tests require network access
      #:phases
      #~(modify-phases %standard-phases
          (add-after 'unpack 'loosen-version-restrictions
            (lambda _
              (substitute* "setup.py"
                (("urwidtrees==1.0.3")
                 "urwidtrees>=1.0.3")))))))
    (propagated-inputs
     (list python-urwid
           python-urwidtrees


@@ 246,20 257,12 @@ of the Transmission BitTorrent client, using its HTTP RPC protocol.")
           python-natsort
           python-async-timeout
           python-setproctitle))
    (arguments
     (list
      #:tests? #f ;tests require network access
      #:phases #~(modify-phases %standard-phases
                   (add-after 'unpack 'loosen-version-restrictions
                     (lambda _
                       (substitute* "setup.py"
                         (("urwidtrees==1.0.3") "urwidtrees>=1.0.3")))))))
    (inputs (list python))
    (build-system python-build-system)
    (native-inputs (list python-setuptools))
    (synopsis "TUI and CLI for the BitTorrent client Transmission")
    (description
     "Stig is a @acronym{TUI, Text User Interface} and @acronym{CLI, Command Line
Interface} client for the BitTorrent client Transmission.")
     "Stig is a @acronym{TUI, Text User Interface} and @acronym{CLI, Command
Line Interface} client for the BitTorrent client Transmission.")
    (home-page "https://github.com/rndusr/stig")
    (license l:gpl3)))