nixpkgs/pkgs/development/python-modules/tornado/default.nix

39 lines
891 B
Nix
Raw Normal View History

2017-07-28 15:47:39 +01:00
{ lib
, python
, buildPythonPackage
, fetchPypi
, backports_abc
, backports_ssl_match_hostname
, certifi
, singledispatch
, pythonOlder
2018-04-04 19:17:46 +01:00
, futures
2017-07-28 15:47:39 +01:00
}:
buildPythonPackage rec {
pname = "tornado";
2018-07-22 11:22:40 +01:00
version = "5.1";
2018-04-04 19:17:46 +01:00
2017-07-28 15:47:39 +01:00
propagatedBuildInputs = [ backports_abc certifi singledispatch ]
2018-04-04 19:17:46 +01:00
++ lib.optional (pythonOlder "3.5") backports_ssl_match_hostname
++ lib.optional (pythonOlder "3.2") futures;
2017-07-28 15:47:39 +01:00
# 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;
2018-07-22 11:22:40 +01:00
sha256 = "4f66a2172cb947387193ca4c2c3e19131f1c70fa8be470ddbbd9317fd0801582";
2018-04-04 19:17:46 +01:00
};
meta = {
description = "A web framework and asynchronous networking library";
homepage = http://www.tornadoweb.org/;
license = lib.licenses.asl20;
2017-07-28 15:47:39 +01:00
};
}