1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #65570 from herrwiese/python-vipaccess

pythonPackages.python-vipaccess: init at 0.10.3
This commit is contained in:
worldofpeace 2019-08-05 16:18:01 -04:00 committed by GitHub
commit 838bb4c56b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 67 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "oath";
version = "1.4.3";
src = fetchPypi {
inherit pname version;
sha256 = "1xqgcqgx6aa0j21hwsdb3aqpqhviwj756bcqjjjcm1h1aij11p6m";
};
meta = with stdenv.lib; {
description = "Python implementation of the three main OATH specifications: HOTP, TOTP and OCRA";
homepage = "https://github.com/bdauvergne/python-oath";
license = licenses.bsd3;
maintainers = with maintainers; [ aw ];
};
}

View file

@ -0,0 +1,42 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, lxml
, oath
, pycryptodome
, requests
, pytest
}:
buildPythonPackage rec {
pname = "python-vipaccess";
version = "0.10.3";
src = fetchPypi {
inherit pname version;
sha256 = "1m6b7qipiaj6pz86kjhyq5m5jxxijpk58gpsdkj5bn0wjl6x1pg2";
};
propagatedBuildInputs = [
lxml
oath
pycryptodome
requests
];
checkInputs = [ pytest ];
# test_check_token_detects_valid_hotp_token,
# test_check_token_detects_valid_totp_token and
# test_check_token_detects_invlaid_token require network
checkPhase = ''
mv vipaccess vipaccess.hidden
pytest tests/ -k 'not test_check_token'
'';
meta = with stdenv.lib; {
description = "A free software implementation of Symantec's VIP Access application and protocol";
homepage = "https://github.com/dlenski/python-vipaccess";
license = licenses.asl20;
maintainers = with maintainers; [ aw ];
};
}

View file

@ -745,6 +745,8 @@ in {
numericalunits = callPackage ../development/python-modules/numericalunits { };
oath = callPackage ../development/python-modules/oath { };
oauthenticator = callPackage ../development/python-modules/oauthenticator { };
ordered-set = callPackage ../development/python-modules/ordered-set { };
@ -1061,6 +1063,8 @@ in {
python-utils = callPackage ../development/python-modules/python-utils { };
python-vipaccess = callPackage ../development/python-modules/python-vipaccess { };
pytimeparse = callPackage ../development/python-modules/pytimeparse { };
pytricia = callPackage ../development/python-modules/pytricia { };