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

python313Packages.pylast: 5.5.0 -> 6.0.0 (#447660)

parents 6e0e8f12 8cd13685
Loading
Loading
Loading
Loading
+5 −7
Original line number Diff line number Diff line
@@ -6,23 +6,20 @@
  hatch-vcs,
  hatchling,
  httpx,
  importlib-metadata,
  pytest-random-order,
  pytestCheckHook,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "pylast";
  version = "5.5.0";
  version = "6.0.0";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "pylast";
    repo = "pylast";
    tag = version;
    hash = "sha256-mPdFG3wqdAyluD37cy2q6oO/x9NgXpOb57s4nU05EzQ=";
    hash = "sha256-mwPiHTLFvaCFPZGqi0+T223Ickbm5JP2MJj4gqaj/qo=";
  };

  build-system = [
@@ -30,9 +27,10 @@ buildPythonPackage rec {
    hatchling
  ];

  dependencies = [ httpx ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
  dependencies = [ httpx ];

  nativeCheckInputs = [
    pytest-random-order
    pytestCheckHook
    flaky
  ];