python311Packages.pymazda: remove
The upstream repo is gone, because of a DCMA claim by Mazda.
This commit is contained in:
parent
d3b60a85df
commit
391e4ef534
3 changed files with 1 additions and 47 deletions
|
@ -1,45 +0,0 @@
|
||||||
{ 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 ];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -285,6 +285,7 @@ mapAliases ({
|
||||||
pylibgen = throw "pylibgen is unmaintained upstreamed, and removed from nixpkgs"; # added 2020-06-20
|
pylibgen = throw "pylibgen is unmaintained upstreamed, and removed from nixpkgs"; # added 2020-06-20
|
||||||
PyLD = pyld; # added 2022-06-22
|
PyLD = pyld; # added 2022-06-22
|
||||||
pymatgen-lammps = throw "pymatgen-lammps has been removed because it is unmaintained and broken"; # added 2023-06-20
|
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
|
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
|
pymssql = throw "pymssql has been abandoned upstream."; # added 2020-05-04
|
||||||
PyMVGLive = pymvglive; # added 2023-02-19
|
PyMVGLive = pymvglive; # added 2023-02-19
|
||||||
|
|
|
@ -10352,8 +10352,6 @@ self: super: with self; {
|
||||||
|
|
||||||
pymavlink = callPackage ../development/python-modules/pymavlink { };
|
pymavlink = callPackage ../development/python-modules/pymavlink { };
|
||||||
|
|
||||||
pymazda = callPackage ../development/python-modules/pymazda { };
|
|
||||||
|
|
||||||
pymbolic = callPackage ../development/python-modules/pymbolic { };
|
pymbolic = callPackage ../development/python-modules/pymbolic { };
|
||||||
|
|
||||||
pymc = callPackage ../development/python-modules/pymc { };
|
pymc = callPackage ../development/python-modules/pymc { };
|
||||||
|
|
Loading…
Reference in a new issue