From f541a9c8a00f8aff5b505d24d717b4b30cabe836 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 6 Sep 2023 09:24:12 +0000 Subject: [PATCH 1/3] python310Packages.marisa-trie: 0.8.0 -> 1.0.0 --- pkgs/development/python-modules/marisa-trie/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/marisa-trie/default.nix b/pkgs/development/python-modules/marisa-trie/default.nix index b2510bd0a8fe..eb5e745edc6f 100644 --- a/pkgs/development/python-modules/marisa-trie/default.nix +++ b/pkgs/development/python-modules/marisa-trie/default.nix @@ -9,11 +9,11 @@ buildPythonPackage rec { pname = "marisa-trie"; - version = "0.8.0"; + version = "1.0.0"; src = fetchPypi { inherit pname version; - hash = "sha256-PQGdF7DX9i1ubXvQUjbYJSYk6hwUC+uL+cbu/zizxwc="; + hash = "sha256-2KaDAfAjpyTrN5qqGxD4ip4aRYzIpBtSfGJQeFm0pNI="; }; nativeBuildInputs = [ From ba4c81544acdb2fc64ec23d607ecb4aa6a44d1d1 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 7 Sep 2023 10:58:31 +0200 Subject: [PATCH 2/3] python310Packages.marisa-trie: add changelog to meta --- pkgs/development/python-modules/marisa-trie/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/marisa-trie/default.nix b/pkgs/development/python-modules/marisa-trie/default.nix index eb5e745edc6f..c912177a967c 100644 --- a/pkgs/development/python-modules/marisa-trie/default.nix +++ b/pkgs/development/python-modules/marisa-trie/default.nix @@ -60,6 +60,7 @@ buildPythonPackage rec { This package provides alternative Cython-based pip-installable Python bindings. ''; homepage = "https://github.com/kmike/marisa-trie"; + changelog = "https://github.com/pytries/marisa-trie/blob/${version}/CHANGES.rst"; license = licenses.mit; maintainers = with maintainers; [ ixxie ]; }; From 04114b5182f3c53da43e1abfdc38c5f784311dcd Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 7 Sep 2023 11:00:17 +0200 Subject: [PATCH 3/3] python310Packages.marisa-trie: add format - disable on unsupported Python releases --- pkgs/development/python-modules/marisa-trie/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/marisa-trie/default.nix b/pkgs/development/python-modules/marisa-trie/default.nix index c912177a967c..34a1a4767e72 100644 --- a/pkgs/development/python-modules/marisa-trie/default.nix +++ b/pkgs/development/python-modules/marisa-trie/default.nix @@ -5,11 +5,15 @@ , pytestCheckHook , hypothesis , readme_renderer +, pythonOlder }: buildPythonPackage rec { pname = "marisa-trie"; version = "1.0.0"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version;