Files
nixpkgs/pkgs/development/python-modules/oelint-data/default.nix
T
Martin Weinelt 5e71237afe python3Packages.oelint-data: 1.0.24 -> 1.0.25
https://github.com/priv-kweihmann/oelint-data/releases/tag/1.0.25

This commit was automatically generated using update-python-libraries.
2025-08-09 19:02:02 +02:00

42 lines
813 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
oelint-parser,
}:
buildPythonPackage rec {
pname = "oelint-data";
version = "1.0.25";
pyproject = true;
src = fetchFromGitHub {
owner = "priv-kweihmann";
repo = "oelint-data";
tag = version;
hash = "sha256-obX8grYYSa9H/UoSBQon44Of4Eh4BtqJrfwZbaqh6IU=";
};
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 ];
};
}