Merge pull request #65570 from herrwiese/python-vipaccess
pythonPackages.python-vipaccess: init at 0.10.3
This commit is contained in:
commit
838bb4c56b
21
pkgs/development/python-modules/oath/default.nix
Normal file
21
pkgs/development/python-modules/oath/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
42
pkgs/development/python-modules/python-vipaccess/default.nix
Normal file
42
pkgs/development/python-modules/python-vipaccess/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -745,6 +745,8 @@ in {
|
|||||||
|
|
||||||
numericalunits = callPackage ../development/python-modules/numericalunits { };
|
numericalunits = callPackage ../development/python-modules/numericalunits { };
|
||||||
|
|
||||||
|
oath = callPackage ../development/python-modules/oath { };
|
||||||
|
|
||||||
oauthenticator = callPackage ../development/python-modules/oauthenticator { };
|
oauthenticator = callPackage ../development/python-modules/oauthenticator { };
|
||||||
|
|
||||||
ordered-set = callPackage ../development/python-modules/ordered-set { };
|
ordered-set = callPackage ../development/python-modules/ordered-set { };
|
||||||
@ -1061,6 +1063,8 @@ in {
|
|||||||
|
|
||||||
python-utils = callPackage ../development/python-modules/python-utils { };
|
python-utils = callPackage ../development/python-modules/python-utils { };
|
||||||
|
|
||||||
|
python-vipaccess = callPackage ../development/python-modules/python-vipaccess { };
|
||||||
|
|
||||||
pytimeparse = callPackage ../development/python-modules/pytimeparse { };
|
pytimeparse = callPackage ../development/python-modules/pytimeparse { };
|
||||||
|
|
||||||
pytricia = callPackage ../development/python-modules/pytricia { };
|
pytricia = callPackage ../development/python-modules/pytricia { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user