python3Packages.python-jobspy: modernize

Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>
This commit is contained in:
Ethan Carter Edwards
2026-07-26 19:06:57 -04:00
parent 794f141c5c
commit 08dc4b28a0
@@ -13,15 +13,17 @@
beautifulsoup4,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "python-jobspy";
version = "1.1.82";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "Bunsly";
repo = "JobSpy";
tag = version;
tag = finalAttrs.version;
hash = "sha256-iLtUIM7QBIl6UAcb1RvKt2uw5gHEIQXuo4z/OQu86wM=";
};
@@ -53,8 +55,8 @@ buildPythonPackage rec {
description = "Jobs scraper library for job sites";
downloadPage = "https://github.com/Bunsly/JobSpy";
homepage = "https://github.com/Bunsly/JobSpy";
changelog = "https://github.com/Bunsly/JobSpy/releases/tag/${src.tag}";
changelog = "https://github.com/Bunsly/JobSpy/releases/tag/${finalAttrs.src.rev}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ethancedwards8 ];
};
}
})