python312Packages.pytado: remove

This commit is contained in:
Jamie Magee
2024-12-02 20:40:48 +01:00
committed by Sefa Eyeoglu
parent 5703364874
commit 8f1d4f699a
3 changed files with 1 additions and 43 deletions
@@ -1,41 +0,0 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
requests,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "pytado";
version = "0.17.7";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "wmalgadey";
repo = "PyTado";
rev = "refs/tags/${version}";
hash = "sha256-WpGznYNVpis1pM9PRXHnQVev3JW6baUT5J9iPxwd0Uk=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ requests ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "PyTado" ];
meta = with lib; {
description = "Python binding for Tado web API";
mainProgram = "pytado";
homepage = "https://github.com/wmalgadey/PyTado";
changelog = "https://github.com/wmalgadey/PyTado/releases/tag/${version}";
license = licenses.gpl3Only;
maintainers = [ ];
};
}
+1
View File
@@ -511,6 +511,7 @@ mapAliases ({
pysparse = throw "pysparse has been abandoned upstream."; # added 2023-02-28
pyspotify = throw "pyspotify has been removed because Spotify stopped supporting libspotify"; # added 2022-05-29
PyStemmer = pystemmer; # added 2023-02-19
pytado = python-tado; # added 2024-12-02
pytest_6 = pytest; # added 2022-02-10
pytestcov = pytest-cov; # added 2021-01-04
pytest-ordering = throw "pytest-ordering has been removed, since it is no longer maintained and broken"; # added 2023-06-22
-2
View File
@@ -12504,8 +12504,6 @@ self: super: with self; {
pytablewriter = callPackage ../development/python-modules/pytablewriter { };
pytado = callPackage ../development/python-modules/pytado { };
pytaglib = callPackage ../development/python-modules/pytaglib { };
pytankerkoenig = callPackage ../development/python-modules/pytankerkoenig { };