Files
nixpkgs/pkgs/development/python-modules/oelint-data/default.nix
T
2025-08-28 14:06:26 +00:00

42 lines
813 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
oelint-parser,
}:
buildPythonPackage rec {
pname = "oelint-data";
version = "1.0.26";
pyproject = true;
src = fetchFromGitHub {
owner = "priv-kweihmann";
repo = "oelint-data";
tag = version;
hash = "sha256-lPlWBYKGJHy0VTSf4YSMqKqpxhMsSyQG4TP8Jg/cqlI=";
};
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/${src.tag}";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}