guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/05: gnu: Add python-port-for.


From: guix-commits
Subject: 02/05: gnu: Add python-port-for.
Date: Wed, 29 Apr 2020 07:46:44 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit d08782d16c21998a493e50e2c90a183a3d4a53bb
Author: Ricardo Wurmus <address@hidden>
AuthorDate: Wed Apr 29 13:38:22 2020 +0200

    gnu: Add python-port-for.
    
    * gnu/packages/python-web.scm (python-port-for): New variable.
---
 gnu/packages/python-web.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 30cd22f..c0be3fa 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3595,3 +3595,35 @@ and rendering come directly from GitHub, so you'll know 
exactly how it will
 appear.  Changes you make to the file will be instantly reflected in the 
browser
 without requiring a page refresh.")
       (license license:expat))))
+
+(define-public python-port-for
+  (package
+    (name "python-port-for")
+    (version "0.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "port-for" version))
+       (sha256
+        (base32
+         "1pncxlj25ggw99r0ijfbkq70gd7cbhqdx5ivsxy4jdp0z14cpda7"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'use-urllib3
+           (lambda _
+             (substitute* "port_for/_download_ranges.py"
+               (("urllib2") "urllib3"))
+             #t)))))
+    (propagated-inputs
+     `(("python-urllib3" ,python-urllib3)))
+    (native-inputs
+     `(("python-mock" ,python-mock)))
+    (home-page "https://github.com/kmike/port-for/";)
+    (synopsis "TCP localhost port finder and association manager")
+    (description
+     "This package provides a utility that helps with local TCP ports
+management.  It can find an unused TCP localhost port and remember the
+association.")
+    (license license:expat)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]