python3Packages.jenkins-job-builder: 6.4.2 -> 6.4.4

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2026-01-21 18:34:24 +01:00
parent 52f6dff87e
commit c30fc5cf28

View File

@@ -16,22 +16,24 @@
nixosTests,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "jenkins-job-builder";
version = "6.4.2";
format = "setuptools";
build-system = [ setuptools ];
version = "6.4.4";
pyproject = true;
# forge at opendev.org does not provide release tarballs
src = fetchPypi {
inherit pname version;
hash = "sha256-G+DVRd6o3GwTdFNnJkotIidrxexJZSdgCGXTA4KnJJA=";
pname = "jenkins_job_builder";
inherit (finalAttrs) version;
hash = "sha256-7PpCDpe3KLRpt+R/Nu+qxdDxLKWVqTiCPK3j+nNaum8=";
};
postPatch = ''
export HOME=$(mktemp -d)
'';
build-system = [ setuptools ];
dependencies = [
pbr
python-jenkins
@@ -57,4 +59,4 @@ buildPythonPackage rec {
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ bot-wxt1221 ];
};
}
})