From cfe940406eedcb9827a461f94083688dfacb2978 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 17 Jan 2023 09:14:23 +0100 Subject: [PATCH 1/2] python310Packages.txaio: add changelog to meta --- pkgs/development/python-modules/txaio/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/txaio/default.nix b/pkgs/development/python-modules/txaio/default.nix index 02cf7c0fda6..ef1f286c001 100644 --- a/pkgs/development/python-modules/txaio/default.nix +++ b/pkgs/development/python-modules/txaio/default.nix @@ -12,11 +12,13 @@ buildPythonPackage rec { pname = "txaio"; version = "22.2.1"; + format = "setuptools"; + disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - sha256 = "sha256-LkWCtw8EsjRZCCVGhKmEIGwNm1DjB0okpMVauiHSTQE="; + hash = "sha256-LkWCtw8EsjRZCCVGhKmEIGwNm1DjB0okpMVauiHSTQE="; }; propagatedBuildInputs = [ @@ -42,11 +44,14 @@ buildPythonPackage rec { "test_cancel" ]; - pythonImportsCheck = [ "txaio" ]; + pythonImportsCheck = [ + "txaio" + ]; meta = with lib; { description = "Utilities to support code that runs unmodified on Twisted and asyncio"; homepage = "https://github.com/crossbario/txaio"; + changelog = "https://github.com/crossbario/txaio/blob/v${version}/docs/releases.rst"; license = licenses.mit; maintainers = with maintainers; [ ]; }; From 73ca9d5f201110a91c92d5592f59f6904582f6dc Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 17 Jan 2023 09:15:01 +0100 Subject: [PATCH 2/2] python310Packages.txaio: 22.2.1 -> 23.1.1 Changelog: https://github.com/crossbario/txaio/blob/v23.1.1/docs/releases.rst --- pkgs/development/python-modules/txaio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/txaio/default.nix b/pkgs/development/python-modules/txaio/default.nix index ef1f286c001..3c7f94ed4d3 100644 --- a/pkgs/development/python-modules/txaio/default.nix +++ b/pkgs/development/python-modules/txaio/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "txaio"; - version = "22.2.1"; + version = "23.1.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-LkWCtw8EsjRZCCVGhKmEIGwNm1DjB0okpMVauiHSTQE="; + hash = "sha256-+akhbpduXjJG39ESrXrVXKkVYGtguEp1esdpvUBP9wQ="; }; propagatedBuildInputs = [