1{ buildPythonPackage, fetchPypi, lib, setuptools-scm }:
2
3buildPythonPackage rec {
4 pname = "qmk_dotty_dict";
5 version = "1.3.0.post1";
6
7 src = fetchPypi {
8 inherit pname version;
9 hash = "sha256-O2EeOTZgv6poNcaOlHhLroD+B7hJCXi17KsDoNL8fqI=";
10 };
11
12 nativeBuildInputs = [ setuptools-scm ];
13
14 doCheck = false;
15
16 meta = with lib; {
17 homepage = "https://github.com/pawelzny/dotty_dict";
18 description = "Dictionary wrapper for quick access to deeply nested keys";
19 longDescription = ''
20 This is a version of dotty-dict by QMK (https://qmk.fm) since the original
21 dotty-dict published to pypi has non-ASCII characters that breaks with
22 some non-UTF8 locale settings.
23 '';
24 license = licenses.mit;
25 maintainers = with maintainers; [ babariviere ];
26 };
27}