3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.myfitnesspal: disable on older Python releases

This commit is contained in:
Fabian Affolter 2022-03-20 10:00:45 +01:00 committed by GitHub
parent fdc1b46e1e
commit 108601b3ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,11 +8,11 @@
, measurement
, python-dateutil
, requests
, six
, rich
, pytestCheckHook
, mock
, nose
, pythonOlder
}:
# TODO: Define this package in "all-packages.nix" using "toPythonApplication".
@ -23,6 +23,8 @@ buildPythonPackage rec {
version = "1.17.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-UXFvKQtC44EvscYWXK7KI/do3U0wTWI3zKwvsRdzKrs=";
@ -36,7 +38,6 @@ buildPythonPackage rec {
measurement
python-dateutil
requests
six
rich
];