guix-commits
[Top][All Lists]
Advanced

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

02/04: gnu: Add python-fsspec.


From: guix-commits
Subject: 02/04: gnu: Add python-fsspec.
Date: Mon, 16 Dec 2019 17:22:30 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit c70a019137a74a0013013e82594a9954b4f8a523
Author: Ricardo Wurmus <address@hidden>
Date:   Mon Dec 16 23:00:43 2019 +0100

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e1c5c60..4a5f1a1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15890,6 +15890,28 @@ append on old values.  Partd excels at shuffling 
operations.")
 (define-public python2-partd
   (package-with-python2 python-partd))
 
+(define-public python-fsspec
+  (package
+    (name "python-fsspec")
+    (version "0.6.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "fsspec" version))
+       (sha256
+        (base32
+         "1g9ba8v04s1nrh7pvzfm2md7ivl2mrz3hcq3y9d1a44gd62h17zj"))))
+    (build-system python-build-system)
+    (arguments '(#:tests? #f))          ; there are none
+    (home-page "https://github.com/intake/filesystem_spec";)
+    (synopsis "File-system specification")
+    (description "The purpose of this package is to produce a template or
+specification for a file-system interface, that specific implementations
+should follow, so that applications making use of them can rely on a common
+behavior and not have to worry about the specific internal implementation
+decisions with any given backend.")
+    (license license:bsd-3)))
+
 (define-public python-dask
   (package
     (name "python-dask")



reply via email to

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