21 buildPythonPackage rec {
22 pname = "myfitnesspal";
26 disabled = pythonOlder "3.7";
29 inherit pname version;
30 hash = "sha256-H9oKSio+2x4TDCB4YN5mmERUEeETLKahPlW3TDDFE/E=";
37 propagatedBuildInputs = [
57 # Remove overly restrictive version constraints
58 sed -i -e "s/>=.*//" requirements.txt
62 # Integration tests require an account to be set
66 pythonImportsCheck = [
71 description = "Python module to access meal tracking data stored in MyFitnessPal";
72 mainProgram = "myfitnesspal";
73 homepage = "https://github.com/coddingtonbear/python-myfitnesspal";
74 license = licenses.mit;
75 maintainers = with maintainers; [ bhipple ];