mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
python3Packages.udsoncan: init at 1.26.1
(cherry picked from commit d011df12cb)
This commit is contained in:
committed by
github-actions[bot]
parent
4fd13173ef
commit
fa044a5fe8
41
pkgs/development/python-modules/udsoncan/default.nix
Normal file
41
pkgs/development/python-modules/udsoncan/default.nix
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "udsoncan";
|
||||
version = "1.26.1";
|
||||
pyproject = true;
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pylessard";
|
||||
repo = "python-udsoncan";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-zprGzcSPfDcP9RKtWmXhQTYT8eR2NQFyfKggRBaIfUU=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"udsoncan"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Python implementation of UDS (ISO-14229) standard";
|
||||
homepage = "https://github.com/pylessard/python-udsoncan";
|
||||
changelog = "https://github.com/pylessard/python-udsoncan/releases/tag/${finalAttrs.src.tag}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ WOnder93 ];
|
||||
};
|
||||
})
|
||||
@@ -20745,6 +20745,8 @@ self: super: with self; {
|
||||
|
||||
udatetime = callPackage ../development/python-modules/udatetime { };
|
||||
|
||||
udsoncan = callPackage ../development/python-modules/udsoncan { };
|
||||
|
||||
udtools = callPackage ../development/python-modules/udtools { };
|
||||
|
||||
ueagle = callPackage ../development/python-modules/ueagle { };
|
||||
|
||||
Reference in New Issue
Block a user