Files
nixpkgs/pkgs/development/python-modules/systemdunitparser/default.nix
Martin Weinelt 6a4572e779 python3Packages.systemdunitparser: 0.3 -> 0.4
This commit was automatically generated using update-python-libraries.
2025-08-09 19:04:25 +02:00

40 lines
829 B
Nix

{
buildPythonPackage,
lib,
fetchFromGitHub,
setuptools,
wheel,
nix-update-script,
}:
buildPythonPackage rec {
pname = "systemdunitparser";
version = "0.4";
pyproject = true;
src = fetchFromGitHub {
owner = "sgallagher";
repo = "systemdunitparser";
tag = version;
hash = "sha256-BlOj1rvRfh0SQ7io2N8MsMvAtWvXk0V6hYzlOSrr7hU=";
};
build-system = [
setuptools
wheel
];
pythonImportsCheck = [
"SystemdUnitParser"
];
passthru.updateScript = nix-update-script { };
meta = {
description = "SystemdUnitParser is an extension to Python's configparser.RawConfigParser to properly parse systemd unit files";
homepage = "https://github.com/sgallagher/systemdunitparser";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ malik ];
};
}