From d2751a94792cf7ee8538b3dfee8a86e6362125d0 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 28 Oct 2024 15:13:59 +0100 Subject: [PATCH] python313Packages.wrapt: 1.16.0 > 1.17.0dev4 https://github.com/GrahamDumpleton/wrapt/compare/refs/tags/1.16.0...1.17.0dev4 --- .../python-modules/wrapt/default.nix | 22 +++++++++++-------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/wrapt/default.nix b/pkgs/development/python-modules/wrapt/default.nix index b4c636923b96..59af6a58b8ab 100644 --- a/pkgs/development/python-modules/wrapt/default.nix +++ b/pkgs/development/python-modules/wrapt/default.nix @@ -2,6 +2,7 @@ lib, buildPythonPackage, fetchFromGitHub, + setuptools, pytestCheckHook, sphinxHook, sphinx-rtd-theme, @@ -9,27 +10,30 @@ buildPythonPackage rec { pname = "wrapt"; - version = "1.16.0"; - outputs = [ - "out" - "doc" - ]; - format = "setuptools"; + version = "1.17.0dev4"; + pyproject = true; src = fetchFromGitHub { owner = "GrahamDumpleton"; - repo = pname; + repo = "wrapt"; rev = "refs/tags/${version}"; - hash = "sha256-lVpSriXSvRwAKX4iPOIBvJwhqhKjdrUdGaEG4QoTQyo="; + hash = "sha256-q2DYCzTWxGpuIa5v6cyDCTekXfDlFML4eo8J60YdCsc="; }; - nativeCheckInputs = [ pytestCheckHook ]; + build-system = [ setuptools ]; nativeBuildInputs = [ sphinxHook sphinx-rtd-theme ]; + outputs = [ + "out" + "doc" + ]; + + nativeCheckInputs = [ pytestCheckHook ]; + pythonImportsCheck = [ "wrapt" ]; meta = with lib; {