guix-commits
[Top][All Lists]
Advanced

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

70/103: gnu: Add python-pyftpdlib.


From: guix-commits
Subject: 70/103: gnu: Add python-pyftpdlib.
Date: Wed, 5 Jan 2022 09:44:38 -0500 (EST)

lbraun pushed a commit to branch wip-python-pep517
in repository guix.

commit ec518aead7067ac06045093007950fc89e131e6a
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Fri Dec 31 12:05:07 2021 +0100

    gnu: Add python-pyftpdlib.
    
    * gnu/packages/python-xyz.scm (python-pyftpdlib): New variable.
---
 gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ee741e3bfe..83f0ea451f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -10398,6 +10398,32 @@ add functionality and customization to your projects 
with their own plugins.")
 (define-public python2-straight-plugin
   (package-with-python2 python-straight-plugin))
 
+(define-public python-pyftpdlib
+  (package
+    (name "python-pyftpdlib")
+    (version "1.5.6")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "pyftpdlib" version))
+        (sha256
+          (base32
+            "0pnv2byzmzg84q5nmmhn1xafvfil85qa5y52bj455br93zc5b9px"))))
+    (build-system python-build-system)
+    (arguments `(#:tests? #f)) ; TODO: A bunch of tests fail.
+    (native-inputs
+      (list python-psutil python-pyopenssl))
+    (home-page
+      "https://github.com/giampaolo/pyftpdlib/";)
+    (synopsis
+      "Python FTP server library")
+    (description
+      "Python FTP server library provides a high-level portable interface
+to easily write very efficient, scalable and asynchronous FTP servers
+with Python. It is the most complete RFC-959 FTP server implementation
+available for Python programming language.")
+    (license license:expat)))
+
 (define-public python-fonttools
   (package
     (name "python-fonttools")



reply via email to

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