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

74 lines
1.3 KiB
Nix
Raw Normal View History

2019-05-07 13:52:16 +01:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, click
, click-default-group
, sanic
, jinja2
, hupper
, pint
, pluggy
, pytest
, pytestrunner
, pytest-asyncio
2019-05-31 15:07:32 +01:00
, black
2019-05-07 13:52:16 +01:00
, aiohttp
, beautifulsoup4
}:
buildPythonPackage rec {
pname = "datasette";
2019-05-31 15:07:32 +01:00
version = "0.28";
2019-05-07 13:52:16 +01:00
src = fetchFromGitHub {
owner = "simonw";
repo = "datasette";
2019-05-07 13:52:16 +01:00
rev = version;
2019-05-31 15:07:32 +01:00
sha256 = "1m2s03gyq0ghjc3s0b5snpinisddywpgii2f0zqa3v4ljmzanx7h";
2019-05-07 13:52:16 +01:00
};
buildInputs = [ pytestrunner ];
propagatedBuildInputs = [
click
click-default-group
sanic
jinja2
hupper
pint
pluggy
];
checkInputs = [
pytest
pytest-asyncio
aiohttp
beautifulsoup4
2019-05-31 15:07:32 +01:00
black
2019-05-07 13:52:16 +01: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" \
2019-05-07 13:52:16 +01:00
--replace "pint==0.8.1" "pint" \
2019-05-31 15:07:32 +01:00
--replace "Jinja2==2.10.1" "Jinja2"
2019-05-07 13:52:16 +01:00
'';
# many tests require network access
checkPhase = ''
pytest --ignore tests/test_api.py \
--ignore tests/test_csv.py \
2019-05-31 15:07:32 +01:00
--ignore tests/test_html.py
2019-05-07 13:52:16 +01: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 ];
};
}