1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools-scm,
6}:
7
8buildPythonPackage rec {
9 pname = "filelock";
10 version = "3.2.1";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "1qry67zv2pmz8px6wdfbjqv75nmryy2ac7asqgs6q6db2722kpcw";
16 };
17
18 nativeBuildInputs = [
19 setuptools-scm
20 ];
21
22 meta = with lib; {
23 homepage = "https://github.com/benediktschmitt/py-filelock";
24 description = "Platform independent file lock for Python";
25 license = licenses.unlicense;
26 maintainers = with maintainers; [ henkkalkwater ];
27 };
28}