python3Packages.cddlparser: init at 0.5.0 (#414527)

This commit is contained in:
Matthias Beyer
2025-06-12 09:35:42 +02:00
committed by GitHub
3 changed files with 45 additions and 0 deletions
+6
View File
@@ -9902,6 +9902,12 @@
githubId = 155722885;
name = "Joachim Ernst";
};
hemera = {
email = "neikos@neikos.email";
github = "TheNeikos";
githubId = 1631166;
name = "Marcel Müller";
};
henkery = {
email = "jim@reupload.nl";
github = "henkery";
@@ -0,0 +1,37 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
# dependencies
setuptools,
}:
buildPythonPackage rec {
pname = "cddlparser";
version = "0.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "tidoust";
repo = pname;
tag = "v${version}";
sha256 = "sha256-Hrf6u5HeCICffgPAOcbb1FhybEVhgre7EXzQZhS8D9o=";
};
build-system = [
setuptools
];
meta = {
homepage = "https://github.com/tidoust/cddlparser";
downloadPage = "https://github.com/tidoust/cddlparser/releases";
description = "Concise data definition language (RFC 8610) parser implementation in Python";
longDescription = ''
A CDDL parser in Python
Concise data definition language (RFC 8610) parser implementation in Python.
'';
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hemera ];
};
}
+2
View File
@@ -2318,6 +2318,8 @@ self: super: with self; {
cdcs = callPackage ../development/python-modules/cdcs { };
cddlparser = callPackage ../development/python-modules/cddlparser { };
celery = callPackage ../development/python-modules/celery { };
celery-batches = callPackage ../development/python-modules/celery-batches { };