Unverified Commit 50ec2c31 authored by Vladimír Čunát's avatar Vladimír Čunát Committed by GitHub
Browse files

python3Packages.tornado: 6.5.1 -> 6.5.2 (#459387)

parents 822224a2 a8dc15d0
Loading
Loading
Loading
Loading
+4 −12
Original line number Diff line number Diff line
@@ -20,14 +20,14 @@

buildPythonPackage rec {
  pname = "tornado";
  version = "6.5.1";
  version = "6.5.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "tornadoweb";
    repo = "tornado";
    tag = "v${version}";
    hash = "sha256-CtmIjPKxKC0T8PGQW1wIAJm/+XxMzZXVZyZxV56sZME=";
    hash = "sha256-jy/HnMY459yZX3HW9V61/ZSSanCJEZakBU/2pocGc/s=";
  };

  build-system = [ setuptools ];
@@ -38,14 +38,6 @@ buildPythonPackage rec {
    # additional tests that have extra dependencies, run slowly, or produce more output than a simple pass/fail
    # https://github.com/tornadoweb/tornado/blob/v6.2.0/maint/test/README
    "maint/test"

    # AttributeError: 'TestIOStreamWebMixin' object has no attribute 'io_loop'
    "tornado/test/iostream_test.py"
  ];

  disabledTests = [
    # Exception: did not get expected log message
    "test_unix_socket_bad_request"
  ];

  pythonImportsCheck = [ "tornado" ];
@@ -67,10 +59,10 @@ buildPythonPackage rec {
      ;
  };

  meta = with lib; {
  meta = {
    description = "Web framework and asynchronous networking library";
    homepage = "https://www.tornadoweb.org/";
    license = licenses.asl20;
    license = lib.licenses.asl20;
    maintainers = [ ];
  };
}