-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnowflake-core.nix
55 lines (47 loc) · 1.05 KB
/
snowflake-core.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{ lib
, buildPythonPackage
, pythonRelaxDepsHook
, fetchPypi
, pythonOlder
, hatchling
, atpublic
, pydantic
, python-dateutil
, pyyaml
, requests
, snowflake-snowpark-python
, urllib3
}:
buildPythonPackage rec {
pname = "snowflake-core";
version = "1.0.2";
pyproject = true;
src = fetchPypi {
pname = "snowflake_core";
inherit version;
hash = "sha256-i/Jn/x780X8VdDLG4k9tLrbCru1m9DqzSyFap22O3wI=";
};
disabled = pythonOlder "3.7";
pythonRelaxDeps = true;
nativeBuildInputs = [
pythonRelaxDepsHook
hatchling
];
propagatedBuildInputs = [
atpublic
pydantic
python-dateutil
pyyaml
requests
snowflake-snowpark-python
urllib3
];
doCheck = false;
meta = with lib; {
changelog = "https://github.com/snowflakedb/snowpark-python/blob/main/CHANGELOG.md";
description = "Snowflake Python API for Resource Management";
homepage = "https://docs.snowflake.com/en/developer-guide/snowpark/index";
license = licenses.asl20;
maintainers = with maintainers; [ padhia ];
};
}