1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 06:31:02 +00:00

pythonPackages.stravalib: init at 0.10.2

This commit is contained in:
Chris Ostrouchov 2019-05-20 09:30:26 -04:00
parent 9856c9eb9b
commit bfb64b9200
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,43 @@
{ lib
, buildPythonPackage
, fetchPypi
, nose
, arrow
, requests
, units
, pytz
, six
}:
buildPythonPackage rec {
pname = "stravalib";
version = "0.10.2";
src = fetchPypi {
inherit pname version;
sha256 = "76db248b24cbd6c51cf93b475d8a8df04ec4b6c6287dca244e47f37a433276d7";
};
checkInputs = [
nose
];
propagatedBuildInputs = [
arrow
requests
units
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/hozn/stravalib;
license = licenses.asl20;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -4378,6 +4378,8 @@ in {
statsmodels = callPackage ../development/python-modules/statsmodels { };
stravalib = callPackage ../development/python-modules/stravalib { };
streamz = callPackage ../development/python-modules/streamz { };
structlog = callPackage ../development/python-modules/structlog { };