Commit b00d8d58 authored by Robert Schütz's avatar Robert Schütz
Browse files

python313Packages.python-picnic-api: drop

parent 9d43dae2
Loading
Loading
Loading
Loading
+0 −32
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  requests,
}:

buildPythonPackage rec {
  pname = "python-picnic-api";
  version = "1.1.0";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1axqw4bs3wa9mdac35h7r25v3i5g7v55cvyy48c4sg31dxnr4wcp";
  };

  propagatedBuildInputs = [ requests ];

  # Project doesn't ship tests
  # https://github.com/MikeBrink/python-picnic-api/issues/13
  doCheck = false;

  pythonImportsCheck = [ "python_picnic_api" ];

  meta = with lib; {
    description = "Python wrapper for the Picnic API";
    homepage = "https://github.com/MikeBrink/python-picnic-api";
    license = with licenses; [ asl20 ];
    maintainers = with maintainers; [ fab ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -519,6 +519,7 @@ mapAliases ({
  pynose = throw "pynose was removed, because it violates the license of nose, by redistributing modified LGPL code under MIT.";
  python-ethtool = ethtool; # added 2024-07-23
  python-myq = throw "python-myq has been removed, as the service provider has decided to block its API requests"; # added 2023-12-07
  python-picnic-api = throw "python-picnic-api was removed because Home Assistant switched to python-picnic-api2"; # added 2025-03-05
  pytrends = throw "pytrends has been removed, as it no longer works and is abandoned upstream"; # added 2025-02-02
  pyqt4 = throw "pyqt4 has been removed, because it depended on the long EOL qt4"; # added 2022-06-09
  pyqt5_sip = pyqt5-sip; # added 2024-01-07
+0 −2
Original line number Diff line number Diff line
@@ -13616,8 +13616,6 @@ self: super: with self; {
  python-periphery = callPackage ../development/python-modules/python-periphery { };
  python-picnic-api = callPackage ../development/python-modules/python-picnic-api { };
  python-picnic-api2 = callPackage ../development/python-modules/python-picnic-api2 { };
  python-pidfile = callPackage ../development/python-modules/python-pidfile { };