2021-01-25 00:26:54 -08:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2017-12-28 08:42:12 -08:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "filelock";
|
2019-05-29 23:49:49 -07:00
|
|
|
version = "3.0.12";
|
2017-12-28 08:42:12 -08:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-29 23:49:49 -07:00
|
|
|
sha256 = "18d82244ee114f543149c66a6e0c14e9c4f8a1044b5cdaadd0f82159d6a6ff59";
|
2017-12-28 08:42:12 -08:00
|
|
|
};
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/benediktschmitt/py-filelock";
|
2017-12-28 08:42:12 -08:00
|
|
|
description = "A platform independent file lock for Python";
|
|
|
|
license = licenses.unlicense;
|
|
|
|
maintainers = with maintainers; [ hyphon81 ];
|
|
|
|
};
|
|
|
|
}
|