Unverified Commit 51595486 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #249740 from deviant/update-ircrobots

python3Packages.irctokens: 2.0.1 -> 2.0.2, python3Packages.ircstates: 0.11.8 -> 0.12.1, python3Packages.ircrobots: 0.4.6 -> 0.6.6
parents 9c7e292a 7ebafb89
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -13,21 +13,19 @@

buildPythonPackage rec {
  pname = "ircrobots";
  version = "0.4.6";
  version = "0.6.6";
  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "jesopo";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-+BrS1+ZkgwT/qvqD0PwRZi2LF+31biS738SzKH1dy7w=";
    hash = "sha256-mIh3tERwHtGH9eA0AT8Lcnwp1Wn9lQhKkUjuZcOXO/c=";
  };

  postPatch = ''
    # too specific pins https://github.com/jesopo/ircrobots/issues/3
    sed -iE 's/anyio.*/anyio/' requirements.txt
    sed -iE 's/ircstates.*/ircstates/' requirements.txt
    sed -iE 's/async_timeout.*/async_timeout/' requirements.txt
  '';

  propagatedBuildInputs = [
+7 −2
Original line number Diff line number Diff line
@@ -4,19 +4,20 @@
, pythonOlder
, irctokens
, pendulum
, freezegun
, python
}:

buildPythonPackage rec {
  pname = "ircstates";
  version = "0.11.8";
  version = "0.12.1";
  disabled = pythonOlder "3.6";  # f-strings

  src = fetchFromGitHub {
    owner = "jesopo";
    repo = pname;
    rev = "v${version}";
    sha256 = "0scxqcgby4vzh2q937r0wy2mb46aghjf47q3z6fp6di1b6hlj7zh";
    hash = "sha256-F9yOY3YBacyoUzNTvPs7pxp6yNx08tiq1jWQKhGiagc=";
  };

  propagatedBuildInputs = [
@@ -24,6 +25,10 @@ buildPythonPackage rec {
    pendulum
  ];

  nativeCheckInputs = [
    freezegun
  ];

  checkPhase = ''
    ${python.interpreter} -m unittest test
  '';
+2 −2
Original line number Diff line number Diff line
@@ -8,14 +8,14 @@

buildPythonPackage rec {
  pname = "irctokens";
  version = "2.0.1";
  version = "2.0.2";
  disabled = pythonOlder "3.6";  # f-strings

  src = fetchFromGitHub {
    owner = "jesopo";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-FgcLngS11U9eBNV/8jllwdrm89tCmthA1sUaFDovk6U=";
    hash = "sha256-Y9NBqxGUkt48hnXxsmfydHkJmWWb+sRrElV8C7l9bpw=";
  };

  nativeCheckInputs = [ pyyaml ];