50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
gettext,
|
|
gitMinimal,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "pykickstart";
|
|
version = "3.65";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pykickstart";
|
|
repo = "pykickstart";
|
|
tag = "r${version}";
|
|
hash = "sha256-bRc+zFd7+FjQln710L6c0fZfq68lIb6orTM3EosS7aM=";
|
|
};
|
|
|
|
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;
|
|
|
|
pythonImportsCheck = [ "pykickstart" ];
|
|
|
|
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/${src.tag}";
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = with lib.maintainers; [
|
|
thefossguy
|
|
];
|
|
};
|
|
}
|