Robert Schütz
2025-03-27 08:20:55 -07:00
parent bd748ffa08
commit 0e70e01dfc
@@ -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;