python3Packages.python-pkcs11: 0.8.1 -> 0.9.0

Diff: https://github.com/danni/python-pkcs11/compare/v0.8.1...v0.9.0

Changelog: https://github.com/pyauth/python-pkcs11/releases/tag/v0.9.0
This commit is contained in:
Robert Schütz
2025-09-20 07:53:18 -07:00
parent d12e9167e6
commit 156ece8f50

View File

@@ -2,7 +2,6 @@
lib, lib,
asn1crypto, asn1crypto,
buildPythonPackage, buildPythonPackage,
cached-property,
cython, cython,
fetchFromGitHub, fetchFromGitHub,
setuptools-scm, setuptools-scm,
@@ -10,23 +9,22 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "python-pkcs11"; pname = "python-pkcs11";
version = "0.8.1"; version = "0.9.0";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "danni"; owner = "danni";
repo = "python-pkcs11"; repo = "python-pkcs11";
tag = "v${version}"; tag = "v${version}";
sha256 = "sha256-iCfcVVzAwwg69Ym1uVimSzYZBQmC+Yppl5YXDaLIcqc="; sha256 = "sha256-8KLc/jNpYAsuRaiRVD9m5rQWW6u1EG1yf9fwwXRk4Qc=";
}; };
nativeBuildInputs = [ build-system = [
cython cython
setuptools-scm setuptools-scm
]; ];
propagatedBuildInputs = [ dependencies = [
cached-property
asn1crypto asn1crypto
]; ];
@@ -35,10 +33,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "pkcs11" ]; pythonImportsCheck = [ "pkcs11" ];
meta = with lib; { meta = {
changelog = "https://github.com/pyauth/python-pkcs11/releases/tag/${src.tag}";
description = "PKCS#11/Cryptoki support for Python"; description = "PKCS#11/Cryptoki support for Python";
homepage = "https://github.com/danni/python-pkcs11"; homepage = "https://github.com/danni/python-pkcs11";
license = with licenses; [ mit ]; license = lib.licenses.mit;
maintainers = with maintainers; [ fab ]; maintainers = with lib.maintainers; [ fab ];
}; };
} }