biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / fastrlock / default.nix
blob547ab78b759e4ef14dbce7f613c69e27863874c3
2   lib,
3   buildPythonPackage,
4   cython,
5   fetchFromGitHub,
6   pytestCheckHook,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "fastrlock";
12   version = "0.8.2";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchFromGitHub {
18     owner = "scoder";
19     repo = pname;
20     rev = "refs/tags/v${version}";
21     hash = "sha256-2h+rhP/EVMG3IkJVkE74p4GeBTwV3BS7fUkKpwedr2k=";
22   };
24   nativeBuildInputs = [ cython ];
26   # Todo: Check why the tests have an import error
27   doCheck = false;
29   nativeCheckInputs = [ pytestCheckHook ];
31   pythonImportsCheck = [ "fastrlock" ];
33   meta = with lib; {
34     description = "RLock implementation for CPython";
35     homepage = "https://github.com/scoder/fastrlock";
36     license = licenses.mit;
37     maintainers = with maintainers; [ hyphon81 ];
38   };