python3Packages.qualysclient: migrate to finalAttrs

This commit is contained in:
Fabian Affolter
2026-02-26 09:59:19 +01:00
committed by GitHub
parent 8db15c1141
commit d85561e0ff
@@ -14,7 +14,7 @@
urllib3,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "qualysclient";
version = "0.0.4.8.4";
pyproject = true;
@@ -22,13 +22,13 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "woodtechie1428";
repo = "qualysclient";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-2m/WHxkomHBudWpFpsgXHN8n+hfLU+lf9fvxhh/3HjA=";
};
postPatch = ''
substituteInPlace setup.py \
--replace-fail "version=__version__," 'version="${version}",'
--replace-fail "version=__version__," 'version="${finalAttrs.version}",'
'';
build-system = [ setuptools ];
@@ -53,8 +53,8 @@ buildPythonPackage rec {
meta = {
description = "Python SDK for interacting with the Qualys API";
homepage = "https://qualysclient.readthedocs.io/";
changelog = "https://github.com/woodtechie1428/qualysclient/releases/tag/v${version}";
changelog = "https://github.com/woodtechie1428/qualysclient/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})