Archived
1
0
Fork 0

gnu: Add python-reflink.

* gnu/packages/python-xyz.scm (python-reflink): New variable.
This commit is contained in:
Ricardo Wurmus 2021-02-02 21:57:34 +01:00
parent e07f60274b
commit 4532a1575b
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -23577,6 +23577,32 @@ YAML. It takes care of defaults, overrides, type checking, command-line
integration, human-readable errors, and standard OS-specific locations.")
(license license:expat)))
(define-public python-reflink
(package
(name "python-reflink")
(version "0.2.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "reflink" version))
(sha256
(base32
"0fkf3sd958g9hvr3jwlhnhqqzrwxljrc3grsf3yknh94vf13a9f9"))))
(build-system python-build-system)
(arguments
`(#:tests? #false)) ; almost all tests want to run mkfs.btrfs
(propagated-inputs
`(("python-cffi" ,python-cffi)))
(native-inputs
`(("python-pytest" ,python-pytest)
("python-pytest-runner" ,python-pytest-runner)))
(home-page "https://gitlab.com/rubdos/pyreflink")
(synopsis "Python wrapper around reflink system call")
(description
"Python reflink wraps around platform specific @code{reflink}
implementations.")
(license license:expat)))
(define-public python-pivy
(package
(name "python-pivy")