2022-11-06T09:58:30 myfitnesspal 1.17.0 -> 2.0.0 https://pypi.org/project/myfitnesspal/ 2022-11-06T09:58:32 attrpath: myfitnesspal 2022-11-06T09:58:32 Checking auto update branch... 2022-11-06T09:58:32 No auto update branch exists 2022-11-06T09:58:33 Old version 1.17.0" not present in master derivation file with contents: { lib , fetchPypi , buildPythonPackage , blessed , browser-cookie3 , keyring , keyrings-alt , lxml , measurement , python-dateutil , requests , rich , typing-extensions , pytestCheckHook , mock , nose , pythonOlder }: buildPythonPackage rec { pname = "myfitnesspal"; version = "2.0.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; sha256 = "sha256-xkO4rzjQTf1H4ZtJlzx6dT6BnfSg3VZU8pXdJFraTAI="; }; propagatedBuildInputs = [ blessed browser-cookie3 keyring keyrings-alt lxml measurement python-dateutil requests rich typing-extensions ]; checkInputs = [ mock nose pytestCheckHook ]; postPatch = '' # Remove overly restrictive version constraints sed -i -e "s/>=.*//" requirements.txt ''; disabledTests = [ # Integration tests require an account to be set "test_integration" ]; pythonImportsCheck = [ "myfitnesspal" ]; meta = with lib; { description = "Python module to access meal tracking data stored in MyFitnessPal"; homepage = "https://github.com/coddingtonbear/python-myfitnesspal"; license = licenses.mit; maintainers = with maintainers; [ bhipple ]; }; }