Unverified Commit 991806be authored by Robert Scott's avatar Robert Scott Committed by GitHub
Browse files

python3Packages.aiogram: 3.19.0 -> 3.20.0.post0 (#403421)

parents 518cfb55 cd34fd6f
Loading
Loading
Loading
Loading
+6 −12
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@

buildPythonPackage rec {
  pname = "aiogram";
  version = "3.19.0";
  version = "3.20.0.post0";
  pyproject = true;

  disabled = pythonOlder "3.9";
@@ -37,7 +37,7 @@ buildPythonPackage rec {
    owner = "aiogram";
    repo = "aiogram";
    tag = "v${version}";
    hash = "sha256-xdDQjH/HUVNJgSxjrqXNgc+hOKuiusAH00PRMRD+8Dw=";
    hash = "sha256-OQH5wes2RGSbT9GPKcZVVxpsFbtOnXd6aAeYfQST1Xs=";
  };

  build-system = [ hatchling ];
@@ -76,18 +76,12 @@ buildPythonPackage rec {
    pytz
  ] ++ lib.flatten (builtins.attrValues optional-dependencies);

  pytestFlagsArray = [
    "-W"
    "ignore::pluggy.PluggyTeardownRaisedWarning"
    "-W"
    "ignore::pytest.PytestDeprecationWarning"
    "-W"
    "ignore::DeprecationWarning"
  ];

  pythonImportsCheck = [ "aiogram" ];

  passthru.updateScript = gitUpdater { rev-prefix = "v"; };
  passthru.updateScript = gitUpdater {
    rev-prefix = "v";
    ignoredVersions = "4.1";
  };

  __darwinAllowLocalNetworking = true;