python3Packages.datasette: 0.29.3 -> 0.30.2

This commit is contained in:
Jonathan Ringer 2019-11-09 10:37:16 -08:00 committed by Jon
parent 0dfbff1d46
commit e9453fc878

View file

@ -20,16 +20,16 @@
buildPythonPackage rec {
pname = "datasette";
version = "0.29.3";
version = "0.30.2";
src = fetchFromGitHub {
owner = "simonw";
repo = "datasette";
rev = version;
sha256 = "0cib7pd4z240ncck0pskzvizblhwkr42fsjpd719wdxy4scs7yqa";
sha256 = "07swnpz4c7vzlc69vavs1xvbhr5fa8g63kyfj1hf3zafskgjnzwy";
};
buildInputs = [ pytestrunner ];
nativeBuildInputs = [ pytestrunner ];
propagatedBuildInputs = [
click
@ -57,15 +57,19 @@ buildPythonPackage rec {
--replace "Sanic==0.7.0" "Sanic" \
--replace "hupper==1.0" "hupper" \
--replace "pint~=0.8.1" "pint" \
--replace "pluggy~=0.12.0" "pint" \
--replace "Jinja2==2.10.1" "Jinja2" \
--replace "uvicorn~=0.8.4" "uvicorn"
'';
# many tests require network access
# test_black fails on darwin
checkPhase = ''
pytest --ignore tests/test_api.py \
--ignore tests/test_csv.py \
--ignore tests/test_html.py
--ignore tests/test_html.py \
--ignore tests/test_black.py \
-k 'not facet'
'';
meta = with lib; {