Unverified Commit 092b85b9 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python310Packages.duckdb-engine: update description

parent 17fa3e8c
Loading
Loading
Loading
Loading
+20 −8
Original line number Diff line number Diff line
@@ -25,16 +25,28 @@ buildPythonPackage rec {
    hash = "sha256-6bR2pt7gUHZu4I7VmJgVsFT9u3/e4c9RAKHHlbX/Tyk=";
  };

  nativeBuildInputs = [ poetry-core ];

  propagatedBuildInputs = [ duckdb sqlalchemy ];

  checkInputs = [ pytestCheckHook hypothesis ipython-sql typing-extensions ];

  pythonImportsCheck = [ "duckdb_engine" ];
  nativeBuildInputs = [
    poetry-core
  ];

  propagatedBuildInputs = [
    duckdb
    sqlalchemy
  ];

  checkInputs = [
    pytestCheckHook
    hypothesis
    ipython-sql
    typing-extensions
  ];

  pythonImportsCheck = [
    "duckdb_engine"
  ];

  meta = with lib; {
    description = "Very very very basic sqlalchemy driver for duckdb";
    description = "SQLAlchemy driver for duckdb";
    homepage = "https://github.com/Mause/duckdb_engine";
    license = licenses.mit;
    maintainers = with maintainers; [ cpcloud ];