Merge pull request #296572 from fabaff/atenpdu-bump

python312Packages.pysnmp-lextudio: 6.0.10 -> 6.0.11, python312Packages.atenpdu: 0.6.1 -> 0.6.2

authored by Fabian Affolter and committed by GitHub 4bf56e13 a3d99d0b

+18 -10
+13 -7
pkgs/development/python-modules/atenpdu/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , async-timeout 5 - , pysnmplib 5 + , pysnmp-lextudio 6 6 , pythonOlder 7 + , poetry-core 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "atenpdu"; 11 - version = "0.6.1"; 12 - format = "setuptools"; 12 + version = "0.6.2"; 13 + pyproject = true; 13 14 14 - disabled = pythonOlder "3.7"; 15 + disabled = pythonOlder "3."; 15 16 16 17 src = fetchPypi { 17 18 inherit pname version; 18 - hash = "sha256-Of7tQJNqaLDgO8nie6rSd1saMbauXJBp8vWfXYAziEE="; 19 + hash = "sha256-KzRoE4tE/tQkKYroq5PbWKREmEl8AwbIOg3IHRZZtsQ="; 19 20 }; 21 + 22 + nativeBuildInputs = [ 23 + poetry-core 24 + ]; 20 25 21 26 propagatedBuildInputs = [ 22 27 async-timeout 23 - pysnmplib 28 + pysnmp-lextudio 24 29 ]; 25 30 26 - # Project has no test 31 + # Module has no test 27 32 doCheck = false; 28 33 29 34 pythonImportsCheck = [ ··· 33 38 meta = with lib; { 34 39 description = "Python interface to control ATEN PE PDUs"; 35 40 homepage = "https://github.com/mtdcr/pductl"; 41 + changelog = "https://github.com/mtdcr/pductl/releases/tag/${version}"; 36 42 license = with licenses; [ mit ]; 37 43 maintainers = with maintainers; [ fab ]; 38 44 };
+5 -3
pkgs/development/python-modules/pysnmp-lextudio/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "pysnmp-lextudio"; 20 - version = "6.0.10"; 20 + version = "6.0.11"; 21 21 pyproject = true; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "lextudio"; 25 25 repo = "pysnmp"; 26 - rev = "v${version}"; 27 - hash = "sha256-zxv/+IhIAnnn6gTyulPCuKainUcGMwRqw6ktYXR+d4Q="; 26 + rev = "refs/tags/v${version}"; 27 + hash = "sha256-h/FxiGjBZqO82omkVqz+fws398Iz1EkHbZPMYIzG+t0="; 28 28 }; 29 29 30 30 nativeBuildInputs = [ ··· 57 57 # pysnmp.smi.error.MibNotFoundError 58 58 "test_send_v3_trap_notification" 59 59 "test_addAsn1MibSource" 60 + "test_v1_walk" 61 + "test_v2_walk" 60 62 ]; 61 63 62 64 pythonImportsCheck = [