2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2017-12-28 16:42:12 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "filelock";
|
2021-10-08 22:23:01 +00:00
|
|
|
version = "3.3.0";
|
2017-12-28 16:42:12 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-10-08 22:23:01 +00:00
|
|
|
sha256 = "8c7eab13dc442dc249e95158bcc12dec724465919bdc9831fdbf0660f03d1785";
|
2017-12-28 16:42:12 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/benediktschmitt/py-filelock";
|
2017-12-28 16:42:12 +00:00
|
|
|
description = "A platform independent file lock for Python";
|
|
|
|
license = licenses.unlicense;
|
|
|
|
maintainers = with maintainers; [ hyphon81 ];
|
|
|
|
};
|
|
|
|
}
|