Merge pull request #207732 from r-ryantm/auto-update/python3.9-telegraph
python39Packages.telegraph: 2.1.0 -> 2.2.0
This commit is contained in:
@@ -9,26 +9,18 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "telegraph";
|
||||
version = "2.1.0";
|
||||
disabled = pythonOlder "3.6";
|
||||
version = "2.2.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
repo = "telegraph";
|
||||
owner = "python273";
|
||||
sha256 = "ChlQJu4kHkXUf4gOtW5HS+ThP3eQL7LsyANeS/10pLo=";
|
||||
rev = "da629de7c00c3b8b0c7ab8ef4bf23caf419a3c6c";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-xARX8lSOftNVYY4InR5vU4OiguCJJJZv/W76G9eLgNY=";
|
||||
};
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
pytestFlagsArray = [ "tests/" ];
|
||||
|
||||
disabledTests = [
|
||||
"test_get_page"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
];
|
||||
@@ -39,12 +31,28 @@ buildPythonPackage rec {
|
||||
];
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "telegraph" ];
|
||||
pytestFlagsArray = [
|
||||
"tests/"
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
"test_get_page"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"telegraph"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/python273/telegraph";
|
||||
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 ];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user