1{ lib, buildPythonPackage, fetchPypi, setuptools-scm }:
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 nativeBuildInputs = [
13 setuptools-scm
14 ];
15
16 meta = with lib; {
17 homepage = "https://github.com/benediktschmitt/py-filelock";
18 description = "Platform independent file lock for Python";
19 license = licenses.unlicense;
20 maintainers = with maintainers; [ henkkalkwater ];
21 };
22}