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