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

59 lines
1,019 B
Nix
Raw Normal View History

2019-07-25 22:33:06 +02:00
{ lib
, buildPythonPackage
, fetchFromGitHub
2019-07-25 22:33:06 +02:00
, click
, h11
, httptools
, uvloop
, websockets
, wsproto
, pytest
, requests
2019-07-25 22:33:06 +02:00
, isPy27
}:
buildPythonPackage rec {
pname = "uvicorn";
version = "0.11.2";
2019-07-25 22:33:06 +02:00
disabled = isPy27;
src = fetchFromGitHub {
owner = "encode";
repo = pname;
rev = version;
sha256 = "145c569j4511zw3wglyv9qgd7g1757ypi2blcckpcmahqw11l5p2";
2019-07-25 22:33:06 +02:00
};
propagatedBuildInputs = [
click
h11
httptools
uvloop
websockets
wsproto
];
postPatch = ''
substituteInPlace setup.py \
--replace "h11==0.8.*" "h11"
2019-07-25 22:33:06 +02:00
'';
checkInputs = [ pytest requests ];
checkPhase = ''
pytest
'';
2019-07-25 22:33:06 +02:00
# LICENCE.md gets propagated without this, causing collisions
# see https://github.com/encode/uvicorn/issues/392
postInstall = ''
rm $out/LICENSE.md
'';
2019-07-25 22:33:06 +02:00
meta = with lib; {
homepage = "https://www.uvicorn.org/";
2019-07-25 22:33:06 +02:00
description = "The lightning-fast ASGI server";
license = licenses.bsd3;
maintainers = with maintainers; [ wd15 ];
};
}