Unverified Commit cc069e0d authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python312Packages.atenpdu: 0.6.2 -> 0.6.3 (#347558)

parents 157d7c38 97ac6b61
Loading
Loading
Loading
Loading
+7 −12
Original line number Diff line number Diff line
@@ -10,24 +10,19 @@

buildPythonPackage rec {
  pname = "atenpdu";
  version = "0.6.2";
  version = "0.6.3";
  pyproject = true;

  disabled = pythonOlder "3.";
  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-KzRoE4tE/tQkKYroq5PbWKREmEl8AwbIOg3IHRZZtsQ=";
    hash = "sha256-BcCw5y5LB0jLp9dRP0ZsAObTZ07kS+h+Hm8PZ0NwU3E=";
  };

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail pysnmp-lextudio pysnmp
  '';
  build-system = [ poetry-core ];

  nativeBuildInputs = [ poetry-core ];

  propagatedBuildInputs = [
  dependencies = [
    async-timeout
    pysnmp
  ];
@@ -39,10 +34,10 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Python interface to control ATEN PE PDUs";
    mainProgram = "pductl";
    homepage = "https://github.com/mtdcr/pductl";
    changelog = "https://github.com/mtdcr/pductl/releases/tag/${version}";
    license = with licenses; [ mit ];
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
    mainProgram = "pductl";
  };
}