python312Packages.oelint-data: init at 1.0.10
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
oelint-parser,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "oelint-data";
|
||||
version = "1.0.10";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "priv-kweihmann";
|
||||
repo = "oelint-data";
|
||||
tag = version;
|
||||
hash = "sha256-lBy/aGxcmJ3v5f+0YAJtuk0IK4WpL5iFrgKjyoLswro=";
|
||||
};
|
||||
|
||||
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/${version}";
|
||||
license = lib.licenses.bsd2;
|
||||
maintainers = with lib.maintainers; [ GaetanLepage ];
|
||||
};
|
||||
}
|
||||
@@ -10164,6 +10164,8 @@ self: super: with self; {
|
||||
|
||||
odp-amsterdam = callPackage ../development/python-modules/odp-amsterdam { };
|
||||
|
||||
oelint-data = callPackage ../development/python-modules/oelint-data { };
|
||||
|
||||
oelint-parser = callPackage ../development/python-modules/oelint-parser { };
|
||||
|
||||
oemthermostat = callPackage ../development/python-modules/oemthermostat { };
|
||||
|
||||
Reference in New Issue
Block a user