ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / portalocker / default.nix
blob1c425f3711f1131baab12cdb4f4f92e9389d08c2
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , pytest-mypy
6 , pythonOlder
7 , redis
8 }:
10 buildPythonPackage rec {
11   pname = "portalocker";
12   version = "2.6.0";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-lk9oMPtCp0tdMrzpntN9gwjB19RN3xjz3Yn0aA3pezk=";
20   };
22   propagatedBuildInputs = [
23     redis
24   ];
26   checkInputs = [
27     pytestCheckHook
28     pytest-mypy
29   ];
31   disabledTests = [
32     "test_combined" # no longer compatible with setuptools>=58
33   ];
35   pythonImportsCheck = [
36     "portalocker"
37   ];
39   meta = with lib; {
40     description = "A library to provide an easy API to file locking";
41     homepage = "https://github.com/WoLpH/portalocker";
42     license = licenses.psfl;
43     maintainers = with maintainers; [ jonringer ];
44     platforms = platforms.unix; # Windows has a dependency on pypiwin32
45   };