depot/third_party/nixpkgs/pkgs/development/python-modules/habitipy/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

60 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
plumbum,
requests,
setuptools,
hypothesis,
pytestCheckHook,
responses,
}:
buildPythonPackage rec {
pname = "habitipy";
version = "0.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "ASMfreaK";
repo = "habitipy";
# TODO: https://github.com/ASMfreaK/habitipy/issues/27
rev = "faaca8840575fe8b807bf17acea6266d5ce92a99";
hash = "sha256-BGFUAntSNH0YYWn9nfKjIlpevF7MFs0csCPSp6IT6Ro=";
};
build-system = [ setuptools ];
dependencies = [
plumbum
requests
setuptools
];
nativeCheckInputs = [
hypothesis
pytestCheckHook
responses
];
preCheck = ''
export HOME=$TMPDIR
'';
disabledTests = [
# network access
"test_content_cache"
# hypothesis.errors.InvalidArgument: tests/test_cli.py::test_data is a function that returns a Hypothesis strategy, but pytest has collected it as a test function.
"test_data"
];
pythonImportsCheck = [ "habitipy" ];
meta = with lib; {
description = "Tools and library for Habitica restful API";
mainProgram = "habitipy";
homepage = "https://github.com/ASMfreaK/habitipy";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}