mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 04:05:40 +03:00
python312Packages.qmk-dotty-dict: remove
qmk-dotty-dict has been removed. It is no longer needed since the fixes have been merged into dotty-dict.
This commit is contained in:
parent
06f1780522
commit
1f5a0cdf8b
3 changed files with 1 additions and 37 deletions
|
@ -1,35 +0,0 @@
|
|||
{
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
lib,
|
||||
poetry-core,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "qmk_dotty_dict";
|
||||
version = "1.3.1";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pawelzny";
|
||||
repo = "dotty_dict";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-kY7o9wgfsV7oc5twOeuhG47C0Js6JzCt02S9Sd8dSGc=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ poetry-core ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/pawelzny/dotty_dict";
|
||||
description = "Dictionary wrapper for quick access to deeply nested keys";
|
||||
longDescription = ''
|
||||
This is a version of dotty-dict by QMK (https://qmk.fm) since the original
|
||||
dotty-dict published to pypi has non-ASCII characters that breaks with
|
||||
some non-UTF8 locale settings.
|
||||
'';
|
||||
license = licenses.mit;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
|
@ -582,6 +582,7 @@ mapAliases ({
|
|||
qasm2image = throw "qasm2image is no longer maintained (since November 2018), and is not compatible with the latest pythonPackages.qiskit versions."; # added 2020-12-09
|
||||
qds-sdk = throw "qds-sdk was removed as it is unmaintained upstream and depends on the removed boto package"; # Added 2024-09-22
|
||||
qds_sdk = qds-sdk; # added 2023-10-21
|
||||
qmk-dotty-dict = throw "qmk-dotty-dict has been removed. It is no longer needed since the fixes have been merged into dotty-dict."; # added 2025-01-01
|
||||
Quandl = quandl; # added 2023-02-19
|
||||
quamash = throw "'quamash' has been removed, since it is unmaintained and broken"; # added 2024-10-17
|
||||
querystring_parser = querystring-parser; # added 2024-01-07
|
||||
|
|
|
@ -13769,8 +13769,6 @@ self: super: with self; {
|
|||
|
||||
qutip = callPackage ../development/python-modules/qutip { };
|
||||
|
||||
qmk-dotty-dict = callPackage ../development/python-modules/qmk-dotty-dict { };
|
||||
|
||||
pythonqwt = callPackage ../development/python-modules/pythonqwt { };
|
||||
|
||||
r2pipe = callPackage ../development/python-modules/r2pipe { };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue