summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@scratchpost.org>2019-05-15 15:12:13 +0200
committerDanny Milosavljevic <dannym@scratchpost.org>2019-05-15 15:22:22 +0200
commit79bfa42287f98e72b99e7165280e2750fad46cd3 (patch)
treed591648722c10583207d266acf9df06564b91e72
parent33572a36624aa1c5cca409cfee36eb67982f4891 (diff)
gnu: Add python-pylzma.
* gnu/packages/python-xyz.scm (python-pylzma): New variable. (python2-pylzma): New variable.
-rw-r--r--gnu/packages/python-xyz.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5ed1ebdd3cf..024fc96f359 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15665,3 +15665,24 @@ processes may share the same data.")
15665 (description "A Sphinx extension to convert SVG images to PDF in case the builder does not support 15665 (description "A Sphinx extension to convert SVG images to PDF in case the builder does not support
15666SVG images natively (e.g. LaTeX).") 15666SVG images natively (e.g. LaTeX).")
15667 (license license:bsd-3))) 15667 (license license:bsd-3)))
15668
15669(define-public python-pylzma
15670 (package
15671 (name "python-pylzma")
15672 (version "0.5.0")
15673 (source
15674 (origin
15675 (method url-fetch)
15676 (uri (pypi-uri "pylzma" version))
15677 (sha256
15678 (base32
15679 "074anvhyjgsv2iby2ql1ixfvjgmhnvcwjbdz8gk70xzkzcm1fx5q"))))
15680 (build-system python-build-system)
15681 (home-page "http://www.joachim-bauch.de/projects/pylzma/")
15682 (synopsis "Python bindings for the LZMA library by Igor Pavlov.")
15683 (description "This package provides Python bindings for the LZMA library
15684by Igor Pavlov.")
15685 (license license:lgpl2.1+)))
15686
15687(define-public python2-pylzma
15688 (package-with-python2 python-pylzma))