pythonPackages.uvicorn: fix propagated LICENSE.md

This commit is contained in:
Simon Chatterjee 2019-09-09 19:15:41 +01:00
parent 27a335c963
commit a3e33b69ba

View File

@ -43,6 +43,12 @@ buildPythonPackage rec {
pytest
'';
# LICENCE.md gets propagated without this, causing collisions
# see https://github.com/encode/uvicorn/issues/392
postInstall = ''
rm $out/LICENSE.md
'';
meta = with lib; {
homepage = https://www.uvicorn.org/;
description = "The lightning-fast ASGI server";