mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
18 lines
448 B
Nix
18 lines
448 B
Nix
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "atomicwrites";
|
|
version = "1.1.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "240831ea22da9ab882b551b31d4225591e5e447a68c5e188db5b89ca1d487585";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Atomic file writes on POSIX";
|
|
homepage = https://pypi.python.org/pypi/atomicwrites;
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
|
};
|
|
}
|