python313Packages.hdfury: init at 1.3.0 (#475885)

This commit is contained in:
Fabian Affolter
2026-01-04 16:34:51 +00:00
committed by GitHub
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,37 @@
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
hatchling,
}:
buildPythonPackage rec {
pname = "hdfury";
version = "1.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "glenndehaan";
repo = "python-hdfury";
tag = version;
hash = "sha256-cV9cqZ0ogxXF2IHtywV5EyC0aIsgzRQOIQHfOT1uq8c=";
};
build-system = [ hatchling ];
dependencies = [ aiohttp ];
pythonImportsCheck = [ "hdfury" ];
# Module no tests
doCheck = false;
meta = {
description = "Python client for HDFury devices";
homepage = "https://github.com/glenndehaan/python-hdfury";
changelog = "https://github.com/glenndehaan/python-hdfury/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
+2
View File
@@ -6797,6 +6797,8 @@ self: super: with self; {
hdfs = callPackage ../development/python-modules/hdfs { };
hdfury = callPackage ../development/python-modules/hdfury { };
hdmedians = callPackage ../development/python-modules/hdmedians { };
headerparser = callPackage ../development/python-modules/headerparser { };