blob: ad4da62cbe0cf4a5ab698c764b7be07ea177a738 (
about) (
plain)
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,
fetchFromGitHub,
boto3,
requests,
setuptools,
python,
}:
buildPythonPackage rec {
pname = "metaflow";
version = "2.15.9";
pyproject = true;
src = fetchFromGitHub {
owner = "Netflix";
repo = "metaflow";
tag = version;
hash = "sha256-so9bmMD0IgUP9FJCyVZa6rCp1iHhbHfB92KScW/ltQU=";
};
build-system = [
setuptools
];
dependencies = [
boto3
requests
];
checkPhase = ''
runHook preCheck
export HOME="$TMPDIR"
export USER="metaflow-test-user"
pushd test/core
${python.interpreter} run_tests.py --num-parallel $NIX_BUILD_CORES \
--tests FlowOptionsTest,BasicLogTest
popd
runHook postCheck
'';
pythonImportsCheck = [ "metaflow" ];
meta = {
description = "Open Source AI/ML Platform";
homepage = "https://metaflow.org/";
changelog = "https://github.com/Netflix/metaflow/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ kr7x ];
};
}
|