python3.pkgs.stravalib: add missing build dependencies

This commit is contained in:
Theodore Ni 2023-08-23 14:34:58 -07:00
parent 68d5e2e06e
commit 3c734d8c47
No known key found for this signature in database
GPG Key ID: 48B67583BDDD4474

View File

@ -3,6 +3,8 @@
, fetchPypi
, nose
, setuptools
, setuptools-scm
, wheel
, arrow
, requests
, units
@ -22,6 +24,12 @@ buildPythonPackage rec {
hash = "sha256-P00oxUz0oVQB969c/N2wpKLe09wtvQWPH4DH4EZUaxc=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
wheel
];
nativeCheckInputs = [
nose
];
@ -33,7 +41,6 @@ buildPythonPackage rec {
pint
pydantic
pytz
setuptools
six
];