nixpkgs/pkgs/development/python-modules/tornado/5.nix
Robert Schütz 2cae050057
python2Packages: remove superfluous overrides
Since Python 2 is not supported anymore we only keep those overrides
which are used by leaf packages.
2022-01-01 02:10:53 +01:00

32 lines
680 B
Nix

{ lib
, python
, buildPythonPackage
, fetchPypi
, isPy27
}:
buildPythonPackage rec {
pname = "tornado";
version = "5.1.1";
disabled = isPy27;
# We specify the name of the test files to prevent
# https://github.com/NixOS/nixpkgs/issues/14634
checkPhase = ''
${python.interpreter} -m unittest discover *_test.py
'';
src = fetchPypi {
inherit pname version;
sha256 = "4e5158d97583502a7e2739951553cbd88a72076f152b4b11b64b9a10c4c49409";
};
__darwinAllowLocalNetworking = true;
meta = {
description = "A web framework and asynchronous networking library";
homepage = "https://www.tornadoweb.org/";
license = lib.licenses.asl20;
};
}