depot/third_party/nixpkgs/pkgs/development/python-modules/telegraph/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

48 lines
991 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
requests,
httpx,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "telegraph";
version = "2.2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
repo = "telegraph";
owner = "python273";
rev = "refs/tags/v${version}";
hash = "sha256-xARX8lSOftNVYY4InR5vU4OiguCJJJZv/W76G9eLgNY=";
};
propagatedBuildInputs = [ requests ];
passthru.optional-dependencies = {
aio = [ httpx ];
};
nativeCheckInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "tests/" ];
disabledTests = [ "test_get_page" ];
doCheck = true;
pythonImportsCheck = [ "telegraph" ];
meta = with lib; {
description = "Telegraph API wrapper";
homepage = "https://github.com/python273/telegraph";
changelog = "https://github.com/python273/telegraph/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ gp2112 ];
};
}