about summary refs log tree commit diff
path: root/pkgs/development/python-modules/atomicwrites
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2018-03-31 11:31:12 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-04-04 19:45:57 +0200
commitdb6d615e6e0c01a62b7d48ca0e2b33cb5587b2c5 (patch)
treec1c11d3cd1856df1b5c9d634cb14bf72b1b83352 /pkgs/development/python-modules/atomicwrites
parent258fee9987871603f622cd983e143158612a1eac (diff)
pythonPackages.atomicwrites: Move to own file
Diffstat (limited to 'pkgs/development/python-modules/atomicwrites')
-rw-r--r--pkgs/development/python-modules/atomicwrites/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/atomicwrites/default.nix b/pkgs/development/python-modules/atomicwrites/default.nix
new file mode 100644
index 0000000000000..724f662e5d3c6
--- /dev/null
+++ b/pkgs/development/python-modules/atomicwrites/default.nix
@@ -0,0 +1,17 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+  pname = "atomicwrites";
+  version = "0.1.9";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "08s05h211r07vs66r4din3swrbzb344vli041fihpg34q3lcxpvw";
+  };
+
+  meta = with stdenv.lib; {
+    description = "Atomic file writes on POSIX";
+    homepage = https://pypi.python.org/pypi/atomicwrites;
+    maintainers = with maintainers; [ matthiasbeyer ];
+  };
+}