Unverified Commit 943277ed authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

python3Packages.qnap-qsw: drop because replaced by aioqsw (#471669)

parents 3ea541dd ca66935e
Loading
Loading
Loading
Loading
+0 −36
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pythonOlder,
  requests,
}:

buildPythonPackage rec {
  pname = "qnap-qsw";
  version = "0.3.0";
  format = "setuptools";

  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "Noltari";
    repo = "python-qnap-qsw";
    rev = version;
    sha256 = "WP1bGt7aAtSVFOMJgPXKqVSbi5zj9K7qoIVrYCrPGqk=";
  };

  propagatedBuildInputs = [ requests ];

  # Project has no tests
  doCheck = false;

  pythonImportsCheck = [ "qnap_qsw" ];

  meta = {
    description = "Python library to interact with the QNAP QSW API";
    homepage = "https://github.com/Noltari/python-qnap-qsw";
    license = lib.licenses.gpl2Only;
    maintainers = with lib.maintainers; [ fab ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -405,6 +405,7 @@ mapAliases {
  qiskit-ibmq-provider = throw "qiskit-imbq-provider has been removed, since it was deprecated upstream"; # added 2025-09-13
  qiskit-ignis = throw "qiskit-ignis has been removed, since it was deprecated upstream"; # added 2025-09-13
  qiskit-terra = throw "qiskit-terra has been removed, since it was deprecated upstream."; # added 2025-09-13
  qnap-qsw = throw "'qnap-qsw' has been replaced by 'aioqsw'"; # added 2025-12-17
  Quandl = throw "'Quandl' has been renamed to/replaced by 'quandl'"; # Converted to throw 2025-10-29
  querystring_parser = throw "'querystring_parser' has been renamed to/replaced by 'querystring-parser'"; # Converted to throw 2025-10-29
  radian = throw "radian has been promoted to a top-level attribute name: `pkgs.radian`"; # added 2025-05-02
+0 −2
Original line number Diff line number Diff line
@@ -15943,8 +15943,6 @@ self: super: with self; {
  qiskit-optimization = callPackage ../development/python-modules/qiskit-optimization { };
  qnap-qsw = callPackage ../development/python-modules/qnap-qsw { };
  qnapstats = callPackage ../development/python-modules/qnapstats { };
  qpageview = callPackage ../development/python-modules/qpageview { };