pykickstart: init at 3.62

This commit is contained in:
Pratham Patel
2025-02-13 17:40:54 +05:30
parent 2ee154072b
commit 893c191973
+46
View File
@@ -0,0 +1,46 @@
{
lib,
python3Packages,
fetchFromGitHub,
gettext,
gitMinimal,
}:
python3Packages.buildPythonApplication rec {
pname = "pykickstart";
version = "3.62";
src = fetchFromGitHub {
owner = "pykickstart";
repo = "pykickstart";
tag = "r${version}";
hash = "sha256-QoMIr1nDGOMzAJ7pO2SdsZIcrSPFt/YEXJz201cXZQo=";
};
build-system = with python3Packages; [
setuptools
];
dependencies = with python3Packages; [
requests
];
nativeBuildInputs = [
gettext
gitMinimal
];
# All checks are for RedHat's weird translation library.
# Can't package it and not really necessary so disable them.
doCheck = false;
meta = {
description = "Python package to interact with Kickstart files commonly found in the RPM world";
homepage = "https://github.com/pykickstart/pykickstart";
changelog = "https://github.com/pykickstart/pykickstart/releases/tag/r${version}";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [
thefossguy
];
};
}