1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 setuptools,
6 oelint-parser,
7}:
8
9buildPythonPackage rec {
10 pname = "oelint-data";
11 version = "1.1.0";
12 pyproject = true;
13
14 src = fetchFromGitHub {
15 owner = "priv-kweihmann";
16 repo = "oelint-data";
17 tag = version;
18 hash = "sha256-yqS0zYUjDg9y0nOeQ2ujQ+LGvGJpF3tuoz3GghUbrF0=";
19 };
20
21 build-system = [
22 setuptools
23 ];
24
25 dependencies = [
26 oelint-parser
27 ];
28
29 pythonImportsCheck = [ "oelint_data" ];
30
31 # No tests
32 doCheck = false;
33
34 meta = {
35 description = "Data for oelint-adv";
36 homepage = "https://github.com/priv-kweihmann/oelint-data";
37 changelog = "https://github.com/priv-kweihmann/oelint-data/releases/tag/${src.tag}";
38 license = lib.licenses.bsd2;
39 maintainers = with lib.maintainers; [ GaetanLepage ];
40 };
41}