about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-05-31 20:59:31 -0400
committerGitHub <noreply@github.com>2019-05-31 20:59:31 -0400
commit505a83ae10178885843948196414f56cc2f030b2 (patch)
tree24d209369a509da4888209441e2059241b638164 /pkgs
parentbf93cdca0d270d5e5e70b4d0b54f98006fe81a24 (diff)
parent46976eff15c48713f2aa99bdbafa8229cb031262 (diff)
downloadnixlib-505a83ae10178885843948196414f56cc2f030b2.tar
nixlib-505a83ae10178885843948196414f56cc2f030b2.tar.gz
nixlib-505a83ae10178885843948196414f56cc2f030b2.tar.bz2
nixlib-505a83ae10178885843948196414f56cc2f030b2.tar.lz
nixlib-505a83ae10178885843948196414f56cc2f030b2.tar.xz
nixlib-505a83ae10178885843948196414f56cc2f030b2.tar.zst
nixlib-505a83ae10178885843948196414f56cc2f030b2.zip
Merge pull request #62311 from costrouc/python-datasette-upgrade
pythonPackages.datasette: 0.27 -> 0.28
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/datasette/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/datasette/default.nix b/pkgs/development/python-modules/datasette/default.nix
index f8c66c429fe7..48de7e86b92e 100644
--- a/pkgs/development/python-modules/datasette/default.nix
+++ b/pkgs/development/python-modules/datasette/default.nix
@@ -11,19 +11,20 @@
 , pytest
 , pytestrunner
 , pytest-asyncio
+, black
 , aiohttp
 , beautifulsoup4
 }:
 
 buildPythonPackage rec {
   pname = "datasette";
-  version = "0.27";
+  version = "0.28";
 
   src = fetchFromGitHub {
     owner = "simonw";
     repo = "datasette";
     rev = version;
-    sha256 = "02k1kk6bw034rs74w0viwzapxz684lqgjvw5q5j5xgr0i4kynylp";
+    sha256 = "1m2s03gyq0ghjc3s0b5snpinisddywpgii2f0zqa3v4ljmzanx7h";
   };
 
   buildInputs = [ pytestrunner ];
@@ -43,24 +44,23 @@ buildPythonPackage rec {
     pytest-asyncio
     aiohttp
     beautifulsoup4
+    black
   ];
 
   postConfigure = ''
     substituteInPlace setup.py \
-      --replace "click==6.7" "click" \
       --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" "Jinja2"
+      --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 \
-           --ignore tests/test_publish_heroku.py
+           --ignore tests/test_html.py
   '';
 
   meta = with lib; {