python310Packages.db-dtypes: add format

This commit is contained in:
Fabian Affolter
2022-06-09 18:03:31 +02:00
committed by Florian Brandes
parent 5c1b2ce27b
commit 197f28bdaf

View File

@@ -6,11 +6,15 @@
, pandas
, pyarrow
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "db-dtypes";
version = "1.0.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "googleapis";
@@ -30,7 +34,9 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [ "db_dtypes" ];
pythonImportsCheck = [
"db_dtypes"
];
meta = with lib; {
description = "Pandas Data Types for SQL systems (BigQuery, Spanner)";