summary refs log tree commit diff
path: root/pkgs/development/python-modules/fasteners/default.nix
blob: b1281c686d87da7888e1e419332f98fbce75d6f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib
, buildPythonPackage
, fetchFromGitHub
, diskcache
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "fasteners";
  version = "0.17.3";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "harlowja";
    repo = pname;
    rev = version;
    hash = "sha256-FVhHp8BZ/wQQyr5AcuDo94LlflixhjZ0SnheSdHuDVQ=";
  };

  checkInputs = [
    diskcache
    pytestCheckHook
  ];

  meta = with lib; {
    description = "A python package that provides useful locks";
    homepage = "https://github.com/harlowja/fasteners";
    license = licenses.asl20;
    maintainers = with maintainers; [ ];
  };

}