Unverified Commit 1527bfc2 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python310Packages.coronavirus: remove

The data is no longer provided by the data source.
parent 194db19b
Loading
Loading
Loading
Loading
+0 −32
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, aiohttp
}:

buildPythonPackage rec {
  pname = "coronavirus";
  version = "1.1.1";

  src = fetchFromGitHub {
    owner = "nabucasa";
    repo = pname;
    rev = version;
    sha256 = "0mx6ifp8irj3669c67hs9r79k8gar6j4aq7d4ji21pllyhyahdwm";
  };

  propagatedBuildInputs = [
    aiohttp
  ];

  # no tests are present
  doCheck = false;
  pythonImportsCheck = [ "coronavirus" ];

  meta = with lib; {
    description = "Python client for getting Corona virus info";
    homepage = "https://github.com/nabucasa/coronavirus";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -63,6 +63,7 @@ mapAliases ({
  ColanderAlchemy = colanderalchemy; # added 2023-02-19
  CommonMark = commonmark; # added 2023-02-1
  ConfigArgParse = configargparse; # added 2021-03-18
  coronavirus = throw "coronavirus was removed, because the source is not providing the data anymore."; # added 2023-05-04
  cozy = throw "cozy was removed because it was not actually https://pypi.org/project/Cozy/."; # added 2022-01-14
  cryptography_vectors = "cryptography_vectors is no longer exposed in python*Packages because it is used for testing cryptography only."; # Added 2022-03-23
  dask-xgboost = throw "dask-xgboost was removed because its features are available in xgboost"; # added 2022-05-24
+0 −2
Original line number Diff line number Diff line
@@ -2063,8 +2063,6 @@ self: super: with self; {

  cornice = callPackage ../development/python-modules/cornice { };

  coronavirus = callPackage ../development/python-modules/coronavirus { };

  corsair-scan = callPackage ../development/python-modules/corsair-scan { };

  cot = callPackage ../development/python-modules/cot { };