python3Packages.python-mbedtls: init at 2.8.0

This commit is contained in:
Sandro Jäckel 2023-10-01 14:52:57 +02:00
parent 0f58b779ca
commit 3c99c6c993
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,50 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, certifi
, cython
, mbedtls_2
, pytestCheckHook
, setuptools
, typing-extensions
}:
buildPythonPackage rec {
pname = "python-mbedtls";
version = "2.8.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "Synss";
repo = "python-mbedtls";
rev = version;
hash = "sha256-gMFludfAprQ/1JR77Ee6/xVvGLJ9pY1LrouLpSKVrzk=";
};
nativeBuildInputs = [
cython
setuptools
];
buildInputs = [
mbedtls_2
];
propagatedBuildInputs = [
certifi
typing-extensions
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "mbedtls" ];
meta = with lib; {
description = "Cryptographic library with an mbed TLS back end";
homepage = "https://github.com/Synss/python-mbedtls";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}

View File

@ -9362,6 +9362,8 @@ self: super: with self; {
python-lsp-black = callPackage ../development/python-modules/python-lsp-black { };
python-mbedtls = callPackage ../development/python-modules/python-mbedtls { };
python-memcached = callPackage ../development/python-modules/python-memcached { };
python-otbr-api = callPackage ../development/python-modules/python-otbr-api { };