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

79 lines
1.4 KiB
Nix
Raw Normal View History

2019-05-07 12:52:16 +00:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, click
, click-default-group
, jinja2
, hupper
, pint
, pluggy
, pytest
, pytestrunner
, pytest-asyncio
2019-05-31 14:07:32 +00:00
, black
2019-05-07 12:52:16 +00:00
, aiohttp
, beautifulsoup4
, uvicorn
, asgiref
, aiofiles
2019-05-07 12:52:16 +00:00
}:
buildPythonPackage rec {
pname = "datasette";
version = "0.29.3";
2019-05-07 12:52:16 +00:00
src = fetchFromGitHub {
owner = "simonw";
repo = "datasette";
2019-05-07 12:52:16 +00:00
rev = version;
sha256 = "0cib7pd4z240ncck0pskzvizblhwkr42fsjpd719wdxy4scs7yqa";
2019-05-07 12:52:16 +00:00
};
buildInputs = [ pytestrunner ];
propagatedBuildInputs = [
click
click-default-group
jinja2
hupper
pint
pluggy
uvicorn
aiofiles
2019-05-07 12:52:16 +00:00
];
checkInputs = [
pytest
pytest-asyncio
aiohttp
beautifulsoup4
2019-05-31 14:07:32 +00:00
black
asgiref
2019-05-07 12:52:16 +00:00
];
postConfigure = ''
substituteInPlace setup.py \
--replace "click-default-group==1.2" "click-default-group" \
--replace "Sanic==0.7.0" "Sanic" \
--replace "hupper==1.0" "hupper" \
--replace "pint~=0.8.1" "pint" \
--replace "Jinja2==2.10.1" "Jinja2" \
--replace "uvicorn~=0.8.4" "uvicorn"
2019-05-07 12:52:16 +00:00
'';
# many tests require network access
checkPhase = ''
pytest --ignore tests/test_api.py \
--ignore tests/test_csv.py \
2019-05-31 14:07:32 +00:00
--ignore tests/test_html.py
2019-05-07 12:52:16 +00:00
'';
meta = with lib; {
description = "An instant JSON API for your SQLite databases";
homepage = https://github.com/simonw/datasette;
license = licenses.asl20;
maintainers = [ maintainers.costrouc ];
};
}