python3Packages.python-pkcs11: 0.8.1 -> 0.9.0 (#442882)

dotlambda 1c6ee941 29dfcc66

Changed files
+8 -9
pkgs
development
python-modules
python-pkcs11
+8 -9
pkgs/development/python-modules/python-pkcs11/default.nix
···
lib,
asn1crypto,
buildPythonPackage,
-
cached-property,
cython,
fetchFromGitHub,
setuptools-scm,
···
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
];
···
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 ];
};
}