Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / python-vipaccess / default.nix
blob7455408f0bc6d509138225a66ae42643f0258c30
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , oath
5 , pycryptodome
6 , requests
7 , pytest
8 }:
10 buildPythonPackage rec {
11   pname = "python-vipaccess";
12   version = "0.14.2";
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-TFSX8iL6ChaL3Fj+0VCHzafF/314Y/i0aTI809Qk5hU=";
18   };
20   propagatedBuildInputs = [
21     oath
22     pycryptodome
23     requests
24   ];
26   nativeCheckInputs = [ pytest ];
27   # test_check_token_detects_valid_hotp_token,
28   # test_check_token_detects_valid_totp_token and
29   # test_check_token_detects_invlaid_token require network
30   checkPhase = ''
31     mv vipaccess vipaccess.hidden
32     pytest tests/ -k 'not test_check_token'
33   '';
35   meta = with lib; {
36     description = "A free software implementation of Symantec's VIP Access application and protocol";
37     mainProgram = "vipaccess";
38     homepage = "https://github.com/dlenski/python-vipaccess";
39     license = licenses.asl20;
40     maintainers = with maintainers; [ aw ];
41   };