forked from mirrors/nixpkgs
pythonPackages.atomicwrites: Move to own file
This commit is contained in:
parent
258fee9987
commit
db6d615e6e
17
pkgs/development/python-modules/atomicwrites/default.nix
Normal file
17
pkgs/development/python-modules/atomicwrites/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -557,22 +557,7 @@ in {
|
||||||
|
|
||||||
atomiclong = callPackage ../development/python-modules/atomiclong { };
|
atomiclong = callPackage ../development/python-modules/atomiclong { };
|
||||||
|
|
||||||
atomicwrites = buildPythonPackage rec {
|
atomicwrites = callPackage ../development/python-modules/atomicwrites { };
|
||||||
version = "0.1.9";
|
|
||||||
name = "atomicwrites-${version}";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/a/atomicwrites/atomicwrites-${version}.tar.gz";
|
|
||||||
sha256 = "08s05h211r07vs66r4din3swrbzb344vli041fihpg34q3lcxpvw";
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Atomic file writes on POSIX";
|
|
||||||
homepage = https://pypi.python.org/pypi/atomicwrites/0.1.0;
|
|
||||||
maintainers = with maintainers; [ matthiasbeyer ];
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
# argparse is part of stdlib in 2.7 and 3.2+
|
# argparse is part of stdlib in 2.7 and 3.2+
|
||||||
argparse = null;
|
argparse = null;
|
||||||
|
|
Loading…
Reference in a new issue