pythonPackages.agate-sql: format, add pythonImportsCheck, mark broken

This commit is contained in:
Sandro Jäckel 2021-03-07 15:53:42 +01:00
parent 089b96e217
commit 17badcf58a
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -11,10 +11,14 @@ buildPythonPackage rec {
propagatedBuildInputs = [ agate sqlalchemy crate ]; propagatedBuildInputs = [ agate sqlalchemy crate ];
pythonImportsCheck = [ "agatesql" ];
meta = with lib; { meta = with lib; {
description = "Adds SQL read/write support to agate."; description = "Adds SQL read/write support to agate.";
homepage = "https://github.com/wireservice/agate-sql"; homepage = "https://github.com/wireservice/agate-sql";
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = with maintainers; [ vrthra ]; maintainers = with maintainers; [ vrthra ];
# FAIL: test_to_sql_create_statement_with_schema (tests.test_agatesql.TestSQL)
broken = true;
}; };
} }