ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / db-dtypes / default.nix
blob8efa6983150dfec68dd09518a05baa3a79640555
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , numpy
5 , packaging
6 , pandas
7 , pyarrow
8 , pytestCheckHook
9 , pythonOlder
12 buildPythonPackage rec {
13   pname = "db-dtypes";
14   version = "1.0.4";
15   format = "setuptools";
17   disabled = pythonOlder "3.7";
19   src = fetchFromGitHub {
20     owner = "googleapis";
21     repo = "python-db-dtypes-pandas";
22     rev = "refs/tags/v${version}";
23     hash = "sha256-ilcVog6mhF83GVa68BppUzvKNRPdSDXla2MU6M2EzLg=";
24   };
26   propagatedBuildInputs = [
27     numpy
28     packaging
29     pandas
30     pyarrow
31   ];
33   checkInputs = [
34     pytestCheckHook
35   ];
37   pythonImportsCheck = [
38     "db_dtypes"
39   ];
41   meta = with lib; {
42     description = "Pandas Data Types for SQL systems (BigQuery, Spanner)";
43     homepage = "https://github.com/googleapis/python-db-dtypes-pandas";
44     license = licenses.asl20;
45     maintainers = with maintainers; [ SuperSandro2000 ];
46   };