gnu: Add python-diskcache.

* gnu/packages/python-xyz.scm (python-diskcache): New variable.
This commit is contained in:
Maxim Cournoyer 2020-04-03 11:16:13 -04:00
parent a9d58a801e
commit 91b3f58de8
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -1208,6 +1208,25 @@ (define-public python-can
sending and receiving messages on a CAN bus.")
(license license:gpl3+)))
(define-public python-diskcache
(package
(name "python-diskcache")
(version "4.1.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "diskcache" version))
(sha256
(base32
"1q2wz5sj16zgyy1zpq516qgbnfwsavk1pl2qks0f4r62z5cmmvmw"))))
(build-system python-build-system)
(arguments
`(#:tests? #f)) ;test suite not included in the release
(home-page "http://www.grantjenks.com/docs/diskcache/")
(synopsis "Disk and file backed cache library")
(description "DiskCache is a disk and file backed persistent cache.")
(license license:asl2.0)))
(define-public python-capturer
(package
(name "python-capturer")