python3Packages.uonet-request-signer-hebe: init at 0.1.1
This commit is contained in:
parent
293e6f0ce5
commit
83b3fb1463
2 changed files with 39 additions and 0 deletions
|
@ -0,0 +1,37 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, pyopenssl
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "uonet-request-signer-hebe";
|
||||
version = "0.1.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "fidopnpAt5CXPsLbx+V8wrJCQQ/WIO6AqxpsYLDv8qM=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pyopenssl
|
||||
];
|
||||
|
||||
# Source is not tagged
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"uonet_request_signer_hebe"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "UONET+ (hebe) request signer for Python";
|
||||
homepage = "https://github.com/wulkanowy/uonet-request-signer";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -9636,6 +9636,8 @@ in {
|
|||
|
||||
untokenize = callPackage ../development/python-modules/untokenize { };
|
||||
|
||||
uonet-request-signer-hebe = callPackage ../development/python-modules/uonet-request-signer-hebe { };
|
||||
|
||||
upass = callPackage ../development/python-modules/upass { };
|
||||
|
||||
upb-lib = callPackage ../development/python-modules/upb-lib { };
|
||||
|
|
Loading…
Reference in a new issue