about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/filelock/3.2.nix
blob: 401fdf582ffb16753f711d570043a508078df2d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildPythonPackage, fetchPypi, setuptools-scm }:

buildPythonPackage rec {
  pname = "filelock";
  version = "3.2.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1qry67zv2pmz8px6wdfbjqv75nmryy2ac7asqgs6q6db2722kpcw";
  };

  nativeBuildInputs = [
    setuptools-scm
  ];

  meta = with lib; {
    homepage = "https://github.com/benediktschmitt/py-filelock";
    description = "A platform independent file lock for Python";
    license = licenses.unlicense;
    maintainers = with maintainers; [ henkkalkwater ];
  };
}