mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 21:53:32 +00:00
58 lines
868 B
Nix
58 lines
868 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, nose
|
|
, setuptools
|
|
, setuptools-scm
|
|
, wheel
|
|
, arrow
|
|
, requests
|
|
, units
|
|
, pint
|
|
, pydantic
|
|
, pytz
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "stravalib";
|
|
version = "1.2.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-P00oxUz0oVQB969c/N2wpKLe09wtvQWPH4DH4EZUaxc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
wheel
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
nose
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
arrow
|
|
requests
|
|
units
|
|
pint
|
|
pydantic
|
|
pytz
|
|
six
|
|
];
|
|
|
|
# tests require network access
|
|
# testing strava api
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Python library for interacting with Strava v3 REST API";
|
|
homepage = "https://github.com/stravalib/stravalib";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|