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 ]; }; }