diff options
author | Leo Famulari <leo@famulari.name> | 2015-12-29 23:57:00 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-01-15 16:45:24 -0500 |
commit | 5c6eea2ad10838f702fc1bbec2bfe711f0c6286a (patch) | |
tree | 1996a0b33b8a69533394c66e64f109115f0ac8d6 /gnu/packages/python.scm | |
parent | f5ca44b86e26bcfc8c32c5d21b3ba76185148294 (diff) | |
download | guix-5c6eea2ad10838f702fc1bbec2bfe711f0c6286a.tar.gz guix-5c6eea2ad10838f702fc1bbec2bfe711f0c6286a.zip |
gnu: Add python-atomicwrites.
* gnu/packages/python.scm (python-atomicwrites): New variable.
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r-- | gnu/packages/python.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 6b0721b496..dd9878fa29 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6706,3 +6706,20 @@ WebSocket usage in Python programs.") (define-public python2-websocket-client (package-with-python2 python-websocket-client)) + +(define-public python-atomicwrites + (package + (name "python-atomicwrites") + (version "0.1.8") + (source (origin + (method url-fetch) + (uri (pypi-uri "atomicwrites" version)) + (sha256 + (base32 + "13nwk0gw0yb61pnf5vxs3fvhav6q3zrf08x9ggc93bnk5fsssx1j")))) + (build-system python-build-system) + (synopsis "Atomic file writes in Python") + (description "Library for atomic file writes using platform dependent tools +for atomic filesystem operations.") + (home-page "https://github.com/untitaker/python-atomicwrites") + (license license:expat))) |