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