Files
nixpkgs/pkgs/development/python-modules/atenpdu/default.nix
T
Martin Weinelt fba35fccc3 python3Packages.atenpdu: 0.6.3 -> 0.7.2
https://github.com/mtdcr/pductl/releases/tag/0.7.2

This commit was automatically generated using update-python-libraries.
2026-02-01 16:42:16 +01:00

42 lines
834 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
async-timeout,
pysnmp,
poetry-core,
}:
buildPythonPackage rec {
pname = "atenpdu";
version = "0.7.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-+UQVCizqpyVe7nuQUYwSBOtiTwW+0LVH1HaaucnIg9k=";
};
build-system = [ poetry-core ];
dependencies = [
async-timeout
pysnmp
];
# Module has no test
doCheck = false;
pythonImportsCheck = [ "atenpdu" ];
meta = {
description = "Python interface to control ATEN PE PDUs";
homepage = "https://github.com/mtdcr/pductl";
changelog = "https://github.com/mtdcr/pductl/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "pductl";
broken = lib.versionAtLeast pysnmp.version "7";
};
}