blob: 14e58697b56748142fef4c5fed03742b5da5e93e (
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
|
{
lib,
arrow,
buildPythonPackage,
fetchFromGitHub,
pint,
pydantic,
pytz,
requests,
responses,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "stravalib";
version = "2.4";
pyproject = true;
src = fetchFromGitHub {
owner = "stravalib";
repo = "stravalib";
tag = "v${version}";
hash = "sha256-RMvahoUOy4RnSu0O7dBpYylaQ8nPfMiivx8k1XBeEGA=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
arrow
pint
pydantic
pytz
requests
responses
];
# Tests require network access, testing strava API
doCheck = false;
pythonImportsCheck = [ "stravalib" ];
meta = {
description = "Python library for interacting with Strava v3 REST API";
homepage = "https://github.com/stravalib/stravalib";
changelog = "https://github.com/stravalib/stravalib/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ sikmir ];
};
}
|