1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "atomicwrites";
5 version = "1.1.5";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "240831ea22da9ab882b551b31d4225591e5e447a68c5e188db5b89ca1d487585";
10 };
11
12 meta = with stdenv.lib; {
13 description = "Atomic file writes on POSIX";
14 homepage = https://pypi.python.org/pypi/atomicwrites;
15 maintainers = with maintainers; [ matthiasbeyer ];
16 };
17}