about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sqlbag/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/sqlbag/default.nix')
-rw-r--r--pkgs/development/python-modules/sqlbag/default.nix65
1 files changed, 29 insertions, 36 deletions
diff --git a/pkgs/development/python-modules/sqlbag/default.nix b/pkgs/development/python-modules/sqlbag/default.nix
index 8b21d89ad5da5..3915bf562e0f0 100644
--- a/pkgs/development/python-modules/sqlbag/default.nix
+++ b/pkgs/development/python-modules/sqlbag/default.nix
@@ -1,23 +1,21 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, isPy27
-, psycopg2
-, pymysql
-, sqlalchemy
-, pathlib
-, six
-, flask
-, pendulum
-, packaging
-, setuptools
-, poetry-core
-, pytestCheckHook
-, pytest-xdist
-, pytest-sugar
-, postgresql
-, postgresqlTestHook
-,
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  psycopg2,
+  pymysql,
+  sqlalchemy,
+  six,
+  flask,
+  pendulum,
+  packaging,
+  setuptools,
+  poetry-core,
+  pytestCheckHook,
+  pytest-xdist,
+  pytest-sugar,
+  postgresql,
+  postgresqlTestHook,
 }:
 buildPythonPackage rec {
   pname = "sqlbag";
@@ -32,22 +30,18 @@ buildPythonPackage rec {
     hash = "sha256-lipgnkqrzjzqwbhtVcWDQypBNzq6Dct/qoM8y/FNiNs=";
   };
 
-  nativeBuildInputs = [
-    poetry-core
-  ];
+  nativeBuildInputs = [ poetry-core ];
 
-  propagatedBuildInputs =
-    [
-      sqlalchemy
-      six
-      packaging
+  propagatedBuildInputs = [
+    sqlalchemy
+    six
+    packaging
 
-      psycopg2
-      pymysql
+    psycopg2
+    pymysql
 
-      setuptools # needed for 'pkg_resources'
-    ]
-    ++ lib.optional isPy27 pathlib;
+    setuptools # needed for 'pkg_resources'
+  ];
 
   nativeCheckInputs = [
     pytestCheckHook
@@ -82,14 +76,13 @@ buildPythonPackage rec {
     "tests"
   ];
 
-  pythonImportsCheck = [
-    "sqlbag"
-  ];
+  pythonImportsCheck = [ "sqlbag" ];
 
   meta = with lib; {
     description = "Handy python code for doing database things";
     homepage = "https://github.com/djrobstep/sqlbag";
     license = with licenses; [ unlicense ];
     maintainers = with maintainers; [ soispha ];
+    broken = true; # Fails to build against the current flask version
   };
 }