From fc6e07f1fd804dcc4e4e3cdf7ded4a76c3da7f86 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 20 Aug 2023 20:06:30 +0200 Subject: [PATCH] python311Packages.pem: 21.2.0 -> 23.1.0 Diff: https://github.com/hynek/pem/compare/refs/tags/21.2.0...23.1.0 Changelog: https://github.com/hynek/pem/blob/23.1.0/CHANGELOG.md --- .../python-modules/pem/default.nix | 30 +++++++++++++------ 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/pem/default.nix b/pkgs/development/python-modules/pem/default.nix index 3ef5b7ffc75c..f4608995dd73 100644 --- a/pkgs/development/python-modules/pem/default.nix +++ b/pkgs/development/python-modules/pem/default.nix @@ -1,28 +1,40 @@ { lib , buildPythonPackage -, pythonOlder -, fetchFromGitHub -, pytestCheckHook , certifi , cryptography +, fetchFromGitHub +, hatch-fancy-pypi-readme +, hatch-vcs +, hatchling , pretend , pyopenssl +, pytestCheckHook +, pythonOlder , twisted }: buildPythonPackage rec { pname = "pem"; - version = "21.2.0"; + version = "23.1.0"; + format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "hynek"; repo = pname; - rev = version; - hash = "sha256-mftLdgtgb5J4zwsb1F/4v4K7XTy4VSZBMy3zPV2f1uA="; + rev = "refs/tags/${version}"; + hash = "sha256-rVYlnvISGugh9qvf3mdrIyELmeOUU4g6291HeoMkoQc="; }; + SETUPTOOLS_SCM_PRETEND_VERSION = version; + + nativeBuildInputs = [ + hatchling + hatch-fancy-pypi-readme + hatch-vcs + ]; + nativeCheckInputs = [ certifi cryptography @@ -30,16 +42,16 @@ buildPythonPackage rec { pyopenssl pytestCheckHook twisted - twisted.optional-dependencies.tls - ]; + ] ++ twisted.optional-dependencies.tls; pythonImportsCheck = [ "pem" ]; meta = with lib; { + description = "Easy PEM file parsing in Python"; homepage = "https://pem.readthedocs.io/"; - description = "Easy PEM file parsing in Python."; + changelog = "https://github.com/hynek/pem/blob/${version}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ nyanotech ]; };