pythonPackages.filelock: init at 2.0.13

This commit is contained in:
hyphon81 2017-12-28 17:42:12 +01:00 committed by Jan Tojnar
parent a9379a6d67
commit e5921012a1
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "filelock";
version = "2.0.13";
src = fetchPypi {
inherit pname version;
sha256 = "1n67dw7np5gsy5whynyk8c46pjlr353d6j9735p5gryaszkpjl6h";
};
meta = with stdenv.lib; {
homepage = https://github.com/benediktschmitt/py-filelock;
description = "A platform independent file lock for Python";
license = licenses.unlicense;
maintainers = with maintainers; [ hyphon81 ];
};
}

View File

@ -8268,6 +8268,8 @@ in {
};
};
filelock = callPackage ../development/python-modules/filelock {};
fiona = callPackage ../development/python-modules/fiona { gdal = pkgs.gdal; };
flake8 = callPackage ../development/python-modules/flake8 { };