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