From 3fd025cf53808410491f118a9bfb8c50936b4d2c Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Thu, 19 Mar 2026 22:49:03 +0100 Subject: [PATCH] python3Packages.jenkinsapi: fix build --- .../python-modules/jenkinsapi/default.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/jenkinsapi/default.nix b/pkgs/development/python-modules/jenkinsapi/default.nix index 4a7fec38bdfe..2fd4d7167762 100644 --- a/pkgs/development/python-modules/jenkinsapi/default.nix +++ b/pkgs/development/python-modules/jenkinsapi/default.nix @@ -2,14 +2,12 @@ lib, buildPythonPackage, fetchFromGitHub, - flit-core, + hatchling, mock, - pbr, pytest-mock, pytestCheckHook, pytz, requests, - setuptools, six, }: @@ -25,15 +23,13 @@ buildPythonPackage rec { hash = "sha256-1dTcT84cDpP9V4tVrgW2MTYx4jQj0/tZiAuakC+orUQ="; }; - nativeBuildInputs = [ - flit-core - pbr + build-system = [ + hatchling ]; - propagatedBuildInputs = [ + dependencies = [ pytz requests - setuptools six ];