pythonPackages.filelock: init at 2.0.13
This commit is contained in:
parent
a9379a6d67
commit
e5921012a1
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in New Issue