Commit dd34f476 authored by Fabian Affolter's avatar Fabian Affolter
Browse files
parent a138aeb0
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -3,29 +3,30 @@
  aiohttp,
  aioresponses,
  buildPythonPackage,
  deepdiff,
  fetchFromGitHub,
  poetry-core,
  poetry-dynamic-versioning,
  pycognito,
  pyjwt,
  pytest-aiohttp,
  pytest-freezegun,
  pytestCheckHook,
  pythonOlder,
  deepdiff,
}:

buildPythonPackage rec {
  pname = "pylitterbot";
  version = "2023.5.0";
  version = "2023.5.1";
  pyproject = true;

  disabled = pythonOlder "3.9";
  disabled = pythonOlder "3.10";

  src = fetchFromGitHub {
    owner = "natekspencer";
    repo = "pylitterbot";
    rev = "refs/tags/v${version}";
    hash = "sha256-MSQdX2PKQohmPGqtRZnUmCCVgKgaf4+cHAUItiPv7pY=";
    hash = "sha256-Mpqa7pMxnFdSL1KGTUbgjh1zd8bAcoyzgxRZZ4SGfYc=";
  };

  pythonRelaxDeps = [ "deepdiff" ];
@@ -38,6 +39,7 @@ buildPythonPackage rec {
  dependencies = [
    aiohttp
    deepdiff
    pycognito
    pyjwt
  ];