about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyreaderwriterlock/default.nix
blob: a9771f6698712caab2fa4c44c8ac78fff6f33220 (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
33
34
35
36
37
38
39
40
41
42
{ lib
, fetchFromGitHub
, buildPythonPackage
, pythonOlder

  # propagates
, typing-extensions

  # tests
, unittestCheckHook
}:

buildPythonPackage rec {
  pname = "pyreaderwriterlock";
  version = "1.0.9";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "elarivie";
    repo = "pyReaderWriterLock";
    rev = "refs/tags/v${version}";
    hash = "sha256-8FC+4aDgGpF1BmOdlkFtMy7OfWdSmvn9fjKXSmmeJlg=";
  };

  propagatedBuildInputs = [ typing-extensions ];

  nativeCheckInputs = [
    unittestCheckHook
  ];

  pythonImportsCheck = [ "readerwriterlock" ];

  meta = with lib; {
    changelog = "https://github.com/elarivie/pyReaderWriterLock/blob/master/CHANGELOG.md";
    description = "Implementation of the Readers-writers problem";
    homepage = "https://github.com/elarivie/pyReaderWriterLock";
    license = licenses.mit;
    maintainers = with maintainers; [ MayNiklas ];
  };
}