587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
75 lines
1.4 KiB
Nix
75 lines
1.4 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
|
|
# build-system
|
|
, poetry-core
|
|
|
|
# dependencies
|
|
, pyasn1
|
|
, pysmi-lextudio
|
|
, pysnmpcrypto
|
|
|
|
# tests
|
|
, pytestCheckHook
|
|
, pytest-asyncio
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pysnmp-lextudio";
|
|
version = "6.1.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lextudio";
|
|
repo = "pysnmp";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-iVej39OmTPiZL11+IetnqHaxFAhZ/YR7tjiRoc7pu8U=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
pyasn1
|
|
pysmi-lextudio
|
|
pysnmpcrypto
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-asyncio
|
|
];
|
|
|
|
disabledTests = [
|
|
# Temporary failure in name resolutionc
|
|
"test_custom_asn1_mib_search_path"
|
|
"test_send_notification"
|
|
"test_send_trap"
|
|
"test_send_v3_inform_notification"
|
|
"test_send_v3_inform_sync"
|
|
"test_usm_sha_aes128"
|
|
"test_v1_get"
|
|
"test_v1_next"
|
|
"test_v1_set"
|
|
"test_v2c_bulk"
|
|
# pysnmp.smi.error.MibNotFoundError
|
|
"test_send_v3_trap_notification"
|
|
"test_addAsn1MibSource"
|
|
"test_v1_walk"
|
|
"test_v2_walk"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"pysnmp"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python SNMP library";
|
|
homepage = "https://github.com/lextudio/pysnmp";
|
|
changelog = "https://github.com/lextudio/pysnmp/blob/${src.rev}/CHANGES.txt";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|