nixpkgs/pkgs/development/python-modules/tornado/default.nix
2022-07-21 22:35:19 +02:00

36 lines
640 B
Nix

{ lib
, python
, buildPythonPackage
, fetchPypi
, pycares
, pycurl
, twisted
}:
buildPythonPackage rec {
pname = "tornado";
version = "6.2";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-m2MEGb3oTsZmv9fqCkyyqKZRwtXMzb3RlyoMhZ38PBM=";
};
checkInputs = [
pycares
pycurl
twisted
];
pythonImportsCheck = [ "tornado" ];
__darwinAllowLocalNetworking = true;
meta = with lib; {
description = "A web framework and asynchronous networking library";
homepage = "https://www.tornadoweb.org/";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}