forked from mirrors/nixpkgs
python3Packages.myfitnesspal: disable on older Python releases
This commit is contained in:
parent
fdc1b46e1e
commit
108601b3ef
|
@ -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
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue