From ded670aaf2c5a86b29228d1d832b8617b7fe5609 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 5 Apr 2025 14:51:59 +0200 Subject: [PATCH] python312Packages.overpy: 0.6 -> 0.7 Diff: https://github.com/DinoTools/python-overpy/compare/refs/tags/0.6...0.7 --- .../python-modules/overpy/default.nix | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/overpy/default.nix b/pkgs/development/python-modules/overpy/default.nix index ad08945d95e3..8dc2d0463cbd 100644 --- a/pkgs/development/python-modules/overpy/default.nix +++ b/pkgs/development/python-modules/overpy/default.nix @@ -2,32 +2,26 @@ lib, buildPythonPackage, fetchFromGitHub, - fetchpatch, pytestCheckHook, pythonOlder, + setuptools, }: buildPythonPackage rec { pname = "overpy"; - version = "0.6"; - format = "setuptools"; + version = "0.7"; + pyproject = true; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "DinoTools"; repo = "python-overpy"; - rev = version; - hash = "sha256-Tl+tzxnPASL4J6D/BYCEWhXe/mI12OVgNT5lyby3s7A="; + tag = version; + hash = "sha256-+bMpA4xDvnQl6Q0M2iGrsUHGLuR/gLimJgmZCMzsLvA="; }; - patches = [ - (fetchpatch { - # Remove pytest-runner - url = "https://patch-diff.githubusercontent.com/raw/DinoTools/python-overpy/pull/104.patch"; - hash = "sha256-ScS0vd2P+wyQGyCQV6/4cUcqoQ+S07tGpEovuz9oBMw="; - }) - ]; + build-system = [ setuptools ]; nativeCheckInputs = [ pytestCheckHook ];