From 0e70e01dfc19c8b553b4ec27754ba65a2d56013a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 27 Mar 2025 08:20:55 -0700 Subject: [PATCH] python313Packages.orderly-set: 5.2.2 -> 5.3.0 Diff: https://github.com/seperman/orderly-set/compare/refs/tags/5.2.2...5.3.0 Changelog: https://github.com/seperman/orderly-set/blob/refs/tags/5.3.0/CHANGELOG.md --- .../python-modules/orderly-set/default.nix | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/orderly-set/default.nix b/pkgs/development/python-modules/orderly-set/default.nix index ca588ecacc47..987924b9b9c8 100644 --- a/pkgs/development/python-modules/orderly-set/default.nix +++ b/pkgs/development/python-modules/orderly-set/default.nix @@ -2,7 +2,6 @@ lib, buildPythonPackage, fetchFromGitHub, - fetchpatch, # build-system setuptools, @@ -13,23 +12,15 @@ buildPythonPackage rec { pname = "orderly-set"; - version = "5.2.2"; + version = "5.3.0"; pyproject = true; src = fetchFromGitHub { owner = "seperman"; repo = "orderly-set"; tag = version; - hash = "sha256-ZDo5fSHD0lCn9CRQtWK10QeZoOhuXG3LR3KA/to9gpE="; + hash = "sha256-8tqQR8Oa/1jcfokBVKdvsC7Ya26bn0XHM9/QsstM07E="; }; - patches = [ - # https://github.com/seperman/orderly-set/pull/5 - (fetchpatch { - name = "do-not-import-mypy.patch"; - url = "https://github.com/seperman/orderly-set/commit/34362084868a081b8ebaaf1f13c93a7a798ef557.patch"; - hash = "sha256-eKbnA31ykm5fH0om6cfOaMpy+ZNNWRDkHieaUIHF8OM="; - }) - ]; build-system = [ setuptools @@ -47,7 +38,7 @@ buildPythonPackage rec { ]; meta = { - description = "Orderly Set previously known as Ordered Set"; + description = "Multiple implementations of Ordered Set"; homepage = "https://github.com/seperman/orderly-set"; changelog = "https://github.com/seperman/orderly-set/blob/${src.rev}/CHANGELOG.md"; license = lib.licenses.mit;