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