aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/datasette
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-10-05 12:43:18 +0000
committerKatharina Fey <kookie@spacekookie.de>2019-10-05 12:44:52 +0000
commitcf85056ba64caf3267d43255ef4a1243e9c8ee3b (patch)
tree3051519e9c8275b870aac43f80af875715c9d124 /nixpkgs/pkgs/development/python-modules/datasette
parent1148b1d122bc03e9a3665856c9b7bb96bd4e3994 (diff)
parent2436c27541b2f52deea3a4c1691216a02152e729 (diff)
Add 'nixpkgs/' from commit '2436c27541b2f52deea3a4c1691216a02152e729'
git-subtree-dir: nixpkgs git-subtree-mainline: 1148b1d122bc03e9a3665856c9b7bb96bd4e3994 git-subtree-split: 2436c27541b2f52deea3a4c1691216a02152e729
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/datasette')
-rw-r--r--nixpkgs/pkgs/development/python-modules/datasette/default.nix73
1 files changed, 73 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/datasette/default.nix b/nixpkgs/pkgs/development/python-modules/datasette/default.nix
new file mode 100644
index 00000000000..48de7e86b92
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/datasette/default.nix
@@ -0,0 +1,73 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, click
+, click-default-group
+, sanic
+, jinja2
+, hupper
+, pint
+, pluggy
+, pytest
+, pytestrunner
+, pytest-asyncio
+, black
+, aiohttp
+, beautifulsoup4
+}:
+
+buildPythonPackage rec {
+ pname = "datasette";
+ version = "0.28";
+
+ src = fetchFromGitHub {
+ owner = "simonw";
+ repo = "datasette";
+ rev = version;
+ sha256 = "1m2s03gyq0ghjc3s0b5snpinisddywpgii2f0zqa3v4ljmzanx7h";
+ };
+
+ buildInputs = [ pytestrunner ];
+
+ propagatedBuildInputs = [
+ click
+ click-default-group
+ sanic
+ jinja2
+ hupper
+ pint
+ pluggy
+ ];
+
+ checkInputs = [
+ pytest
+ pytest-asyncio
+ aiohttp
+ beautifulsoup4
+ black
+ ];
+
+ 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"
+ '';
+
+ # many tests require network access
+ checkPhase = ''
+ pytest --ignore tests/test_api.py \
+ --ignore tests/test_csv.py \
+ --ignore tests/test_html.py
+ '';
+
+ meta = with lib; {
+ description = "An instant JSON API for your SQLite databases";
+ homepage = https://github.com/simonw/datasette;
+ license = licenses.asl20;
+ maintainers = [ maintainers.costrouc ];
+ };
+
+}