Unverified Commit 391e4ef5 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python311Packages.pymazda: remove

The upstream repo is gone, because of a DCMA claim by Mazda.
parent d3b60a85
Loading
Loading
Loading
Loading
+0 −45
Original line number Diff line number Diff line
{ lib
, aiohttp
, buildPythonPackage
, cryptography
, fetchPypi
, poetry-core
, pythonOlder
}:

buildPythonPackage rec {
  pname = "pymazda";
  version = "0.3.11";
  format = "pyproject";

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-DiXLY4mfgRbE0Y1tOJnkMSQQj1vcySLVDBthOWe7/dM=";
  };

  nativeBuildInputs = [
    poetry-core
  ];

  propagatedBuildInputs = [
    aiohttp
    cryptography
  ];

  # Project has no tests
  doCheck = false;

  pythonImportsCheck = [
    "pymazda"
  ];

  meta = with lib; {
    description = "Python client for interacting with the MyMazda API";
    homepage = "https://github.com/bdr99/pymazda";
    changelog = "https://github.com/bdr99/pymazda/releases/tag/${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -285,6 +285,7 @@ mapAliases ({
  pylibgen = throw "pylibgen is unmaintained upstreamed, and removed from nixpkgs"; # added 2020-06-20
  PyLD = pyld; # added 2022-06-22
  pymatgen-lammps = throw "pymatgen-lammps has been removed because it is unmaintained and broken"; # added 2023-06-20
  pymazda = throw "pymazda has been removed, because the upstream repo has been affected by a DCMA claim."; # added 2023-10-16
  pymc3 = pymc; # added 2022-06-05, module was rename starting with 4.0.0
  pymssql = throw "pymssql has been abandoned upstream."; # added 2020-05-04
  PyMVGLive = pymvglive; # added 2023-02-19
+0 −2
Original line number Diff line number Diff line
@@ -10352,8 +10352,6 @@ self: super: with self; {
  pymavlink = callPackage ../development/python-modules/pymavlink { };
  pymazda = callPackage ../development/python-modules/pymazda { };
  pymbolic = callPackage ../development/python-modules/pymbolic { };
  pymc = callPackage ../development/python-modules/pymc { };