Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

82 lines
1.6 KiB
Nix

{
lib,
blessed,
browser-cookie3,
buildPythonPackage,
cloudscraper,
fetchPypi,
keyring,
keyrings-alt,
lxml,
measurement,
mock,
pytestCheckHook,
python-dateutil,
pythonOlder,
requests,
rich,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "myfitnesspal";
version = "2.1.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-eE807M8qFDlSMAcE+GFJyve1YfmlWmB3ML9VJhMUeIE=";
};
pythonRelaxDeps = [ "typing-extensions" ];
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
blessed
browser-cookie3
cloudscraper
keyring
keyrings-alt
lxml
measurement
python-dateutil
requests
rich
typing-extensions
];
nativeCheckInputs = [
mock
pytestCheckHook
];
postPatch = ''
# Remove overly restrictive version constraints
sed -i -e "s/>=.*//" requirements.txt
# https://github.com/coddingtonbear/python-measurement/pull/8
substituteInPlace tests/test_client.py \
--replace-fail "Weight" "Mass" \
--replace-fail '"Mass"' '"Weight"'
'';
disabledTests = [
# Integration tests require an account to be set
"test_integration"
];
pythonImportsCheck = [ "myfitnesspal" ];
meta = {
description = "Python module to access meal tracking data stored in MyFitnessPal";
mainProgram = "myfitnesspal";
homepage = "https://github.com/coddingtonbear/python-myfitnesspal";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bhipple ];
};
}