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

29 lines
644 B
Nix
Raw Normal View History

2017-07-28 14:47:39 +00:00
{ lib
, python
, buildPythonPackage
, fetchPypi
, backports_abc
, backports_ssl_match_hostname
, certifi
, singledispatch
}:
buildPythonPackage rec {
pname = "tornado";
2018-01-07 08:01:34 +00:00
version = "4.5.3";
2017-07-28 14:47:39 +00:00
name = "${pname}-${version}";
propagatedBuildInputs = [ backports_abc backports_ssl_match_hostname certifi singledispatch ];
# 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-01-07 08:01:34 +00:00
sha256 = "6d14e47eab0e15799cf3cdcc86b0b98279da68522caace2bd7ce644287685f0a";
2017-07-28 14:47:39 +00:00
};
}