pythonPackages.atomicwrites: Move to own file

This commit is contained in:
Elis Hirwing
2018-03-31 11:31:12 +02:00
committed by Frederik Rietdijk
parent 258fee9987
commit db6d615e6e
2 changed files with 18 additions and 16 deletions

View File

@@ -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 ];
};
}