biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / proton-keyring-linux / default.nix
blob51617e71a0f83bf312c447052622db0748a92f84
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   keyring,
7   proton-core,
8   pytestCheckHook,
9   pytest-cov-stub,
12 buildPythonPackage rec {
13   pname = "proton-keyring-linux";
14   version = "0.0.2";
15   pyproject = true;
17   src = fetchFromGitHub {
18     owner = "ProtonVPN";
19     repo = "python-proton-keyring-linux";
20     rev = "refs/tags/v${version}";
21     hash = "sha256-c2wdbd8Hkz2hF9zYMy4/V/W6uZRItz7tWqLJqTsJoHU=";
22   };
24   build-system = [ setuptools ];
26   dependencies = [
27     keyring
28     proton-core
29   ];
31   pythonImportsCheck = [ "proton.keyring_linux.core" ];
33   nativeCheckInputs = [
34     pytestCheckHook
35     pytest-cov-stub
36   ];
38   meta = {
39     description = "ProtonVPN core component to access Linux's keyring";
40     homepage = "https://github.com/ProtonVPN/python-proton-keyring-linux";
41     license = lib.licenses.gpl3Only;
42     maintainers = with lib.maintainers; [ sebtm ];
43   };