Merge pull request #217004 from sikmir/stravalib

python3Packages.stravalib: 1.1.0 → 1.2.0

authored by Nikolay Korotkiy and committed by GitHub 76f83afe 1ca01cb1

+10 -3
+10 -3
pkgs/development/python-modules/stravalib/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , nose 5 + , setuptools 5 6 , arrow 6 7 , requests 7 8 , units 9 + , pint 10 + , pydantic 8 11 , pytz 9 12 , six 10 13 }: 11 14 12 15 buildPythonPackage rec { 13 16 pname = "stravalib"; 14 - version = "1.1.0"; 17 + version = "1.2.0"; 18 + format = "pyproject"; 15 19 16 20 src = fetchPypi { 17 21 inherit pname version; 18 - sha256 = "sha256-qn46u1Kq2fkEL/JnjDNKbJZMTz/pitveNFPaf2xkbYs="; 22 + sha256 = "sha256-P00oxUz0oVQB969c/N2wpKLe09wtvQWPH4DH4EZUaxc="; 19 23 }; 20 24 21 25 nativeCheckInputs = [ ··· 26 30 arrow 27 31 requests 28 32 units 33 + pint 34 + pydantic 29 35 pytz 36 + setuptools 30 37 six 31 38 ]; 32 39 ··· 36 43 37 44 meta = with lib; { 38 45 description = "Python library for interacting with Strava v3 REST API"; 39 - homepage = "https://github.com/hozn/stravalib"; 46 + homepage = "https://github.com/stravalib/stravalib"; 40 47 license = licenses.asl20; 41 48 maintainers = [ maintainers.costrouc ]; 42 49 };