python3Packages.pygnuutils: init at 0.1.1

This commit is contained in:
Robert Schütz
2025-10-14 17:37:31 -07:00
parent ec1de64381
commit 72d1a8aeb0
2 changed files with 43 additions and 0 deletions
@@ -0,0 +1,41 @@
{
buildPythonPackage,
click,
fetchFromGitHub,
lib,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "pygnuutils";
version = "0.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "matan1008";
repo = "pygnuutils";
tag = "v${version}";
hash = "sha256-RySqq1V6ad3W53Rp/ZweMPnbM7C3RDm3b6KV/FKQyW0=";
};
build-system = [ setuptools ];
dependencies = [
click
];
pythonImportsCheck = [ "pygnuutils" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
changelog = "https://github.com/matan1008/pygnuutils/releases/tag/${src.tag}";
description = "Pure python implementation for GNU utils";
homepage = "https://github.com/matan1008/pygnuutils";
license = lib.licenses.gpl3Only;
maintainers = [ lib.maintainers.dotlambda ];
};
}
+2
View File
@@ -13164,6 +13164,8 @@ self: super: with self; {
pygnmi = callPackage ../development/python-modules/pygnmi { };
pygnuutils = callPackage ../development/python-modules/pygnuutils { };
pygobject-stubs = callPackage ../development/python-modules/pygobject-stubs { };
pygobject3 = callPackage ../development/python-modules/pygobject/3.nix {