Merge pull request #62311 from costrouc/python-datasette-upgrade
pythonPackages.datasette: 0.27 -> 0.28
This commit is contained in:
commit
505a83ae10
|
@ -11,19 +11,20 @@
|
||||||
, pytest
|
, pytest
|
||||||
, pytestrunner
|
, pytestrunner
|
||||||
, pytest-asyncio
|
, pytest-asyncio
|
||||||
|
, black
|
||||||
, aiohttp
|
, aiohttp
|
||||||
, beautifulsoup4
|
, beautifulsoup4
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "datasette";
|
pname = "datasette";
|
||||||
version = "0.27";
|
version = "0.28";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "simonw";
|
owner = "simonw";
|
||||||
repo = "datasette";
|
repo = "datasette";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "02k1kk6bw034rs74w0viwzapxz684lqgjvw5q5j5xgr0i4kynylp";
|
sha256 = "1m2s03gyq0ghjc3s0b5snpinisddywpgii2f0zqa3v4ljmzanx7h";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pytestrunner ];
|
buildInputs = [ pytestrunner ];
|
||||||
|
@ -43,24 +44,23 @@ buildPythonPackage rec {
|
||||||
pytest-asyncio
|
pytest-asyncio
|
||||||
aiohttp
|
aiohttp
|
||||||
beautifulsoup4
|
beautifulsoup4
|
||||||
|
black
|
||||||
];
|
];
|
||||||
|
|
||||||
postConfigure = ''
|
postConfigure = ''
|
||||||
substituteInPlace setup.py \
|
substituteInPlace setup.py \
|
||||||
--replace "click==6.7" "click" \
|
|
||||||
--replace "click-default-group==1.2" "click-default-group" \
|
--replace "click-default-group==1.2" "click-default-group" \
|
||||||
--replace "Sanic==0.7.0" "Sanic" \
|
--replace "Sanic==0.7.0" "Sanic" \
|
||||||
--replace "hupper==1.0" "hupper" \
|
--replace "hupper==1.0" "hupper" \
|
||||||
--replace "pint==0.8.1" "pint" \
|
--replace "pint==0.8.1" "pint" \
|
||||||
--replace "Jinja2==2.10" "Jinja2"
|
--replace "Jinja2==2.10.1" "Jinja2"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# many tests require network access
|
# many tests require network access
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
pytest --ignore tests/test_api.py \
|
pytest --ignore tests/test_api.py \
|
||||||
--ignore tests/test_csv.py \
|
--ignore tests/test_csv.py \
|
||||||
--ignore tests/test_html.py \
|
--ignore tests/test_html.py
|
||||||
--ignore tests/test_publish_heroku.py
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in New Issue