Files
nixpkgs/pkgs/development/python-modules/oelint-data/default.nix
T
2026-01-30 15:38:09 +00:00

42 lines
844 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
oelint-parser,
}:
buildPythonPackage (finalAttrs: {
pname = "oelint-data";
version = "1.3.5";
pyproject = true;
src = fetchFromGitHub {
owner = "priv-kweihmann";
repo = "oelint-data";
tag = finalAttrs.version;
hash = "sha256-Gn8iddrZj6dRv5Lz68Qq375zKAf2uOSMX2l35WkdQ9k=";
};
build-system = [
setuptools
];
dependencies = [
oelint-parser
];
pythonImportsCheck = [ "oelint_data" ];
# No tests
doCheck = false;
meta = {
description = "Data for oelint-adv";
homepage = "https://github.com/priv-kweihmann/oelint-data";
changelog = "https://github.com/priv-kweihmann/oelint-data/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
})