12 buildPythonPackage rec {
17 disabled = pythonOlder "3.8";
19 src = fetchFromGitHub {
22 rev = "refs/tags/v${version}";
23 hash = "sha256-AtQqXiy943cYhHDsyz9Yk5uA4xK7Q4p21CT3X3zYzrQ=";
26 nativeBuildInputs = [ poetry-core ];
28 propagatedBuildInputs = [
34 # Module has no test, examples are used for testing
37 pythonImportsCheck = [ "pysnmp" ];
40 description = "Implementation of v1/v2c/v3 SNMP engine";
41 homepage = "https://github.com/pysnmp/pysnmp";
42 changelog = "https://github.com/pysnmp/pysnmp/releases/tag/v${version}";
43 license = with licenses; [ mit ];
44 maintainers = with maintainers; [ fab ];