From ac60a9e360e1ef36610be446ae7b529666ca6ed9 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 14 Jul 2026 13:02:50 +0200 Subject: [PATCH] python3Packages.more-properties: drop Unmaintained upstream and leaf in nixpkgs. --- .../more-properties/default.nix | 51 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 2 - 3 files changed, 1 insertion(+), 53 deletions(-) delete mode 100644 pkgs/development/python-modules/more-properties/default.nix diff --git a/pkgs/development/python-modules/more-properties/default.nix b/pkgs/development/python-modules/more-properties/default.nix deleted file mode 100644 index 0a62ed9c4ac2..000000000000 --- a/pkgs/development/python-modules/more-properties/default.nix +++ /dev/null @@ -1,51 +0,0 @@ -{ - lib, - buildPythonPackage, - pythonAtLeast, - fetchFromGitHub, - setuptools, - pytestCheckHook, -}: - -buildPythonPackage rec { - pname = "more-properties"; - version = "1.1.1"; - pyproject = true; - - # All tests are failing with: - # AssertionError: None != 'The type of the None singleton.' - disabled = pythonAtLeast "3.13"; - - src = fetchFromGitHub { - owner = "madman-bob"; - repo = "python-more-properties"; - tag = version; - hash = "sha256-dKG97rw5IG19m7u3ZDBM2yGScL5cFaKBvGZxPVJaUTE="; - }; - - postPatch = '' - mv pypi_upload/setup.py . - substituteInPlace setup.py \ - --replace-fail "project_root = Path(__file__).parents[1]" "project_root = Path(__file__).parents[0]" - ''; - - build-system = [ - setuptools - ]; - - pythonRemoveDeps = [ - # dataclasses is included in Python since 3.7 - "dataclasses" - ]; - - nativeCheckInputs = [ pytestCheckHook ]; - - pythonImportsCheck = [ "more_properties" ]; - - meta = { - description = "Collection of property variants"; - homepage = "https://github.com/madman-bob/python-more-properties"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ dotlambda ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 1f2b9e6118a0..b31b710d2c97 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -387,6 +387,7 @@ mapAliases { modeled = "'modeled' has been removed because it is unmaintained"; # Added 2026-01-19 monarchmoney = throw "'monarchmoney' has been renamed to/replaced by 'monarchmoneycommunity'"; # Added 2026-03-05 monkeytype = throw "'monkeytype' has been removed as it was unmaintained upstream"; # Added 2026-04-19 + more-properties = "'more-properties' has been removed to due lack of upstream maintenance"; # Added 2026-07-14 moretools = "'moretools' has been removed because it is unmaintained"; # Added 2026-01-19 mpd2 = warnAlias "'mpd2' has been renamed to 'python-mpd2'"; # Added 2026-06-14 mpire = throw "'mpire' has been removed because it is unused in Nixpkgs"; # Added 2026-06-22 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a053ce0b73c6..4b8eec12df33 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10794,8 +10794,6 @@ self: super: with self; { more-itertools = callPackage ../development/python-modules/more-itertools { }; - more-properties = callPackage ../development/python-modules/more-properties { }; - morecantile = callPackage ../development/python-modules/morecantile { }; moreorless = callPackage ../development/python-modules/moreorless { };