1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "filelock";
5 version = "3.2.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1qry67zv2pmz8px6wdfbjqv75nmryy2ac7asqgs6q6db2722kpcw";
10 };
11
12 meta = with lib; {
13 homepage = "https://github.com/benediktschmitt/py-filelock";
14 description = "A platform independent file lock for Python";
15 license = licenses.unlicense;
16 maintainers = with maintainers; [ henkkalkwater ];
17 };
18}