From 156ece8f506135393cfbff4511ff6b2672b9f739 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 20 Sep 2025 07:53:18 -0700 Subject: [PATCH] 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 --- .../python-modules/python-pkcs11/default.nix | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/python-pkcs11/default.nix b/pkgs/development/python-modules/python-pkcs11/default.nix index baa6e6b45e63..b67fab579aa6 100644 --- a/pkgs/development/python-modules/python-pkcs11/default.nix +++ b/pkgs/development/python-modules/python-pkcs11/default.nix @@ -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 ]; }; }