summary refs log blame commit diff
path: root/pkgs/development/python-modules/qmk-dotty-dict/default.nix
blob: 4e52dc991795a385b167def19884d496ff8bc4b2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
                                                       














                                                                   
                                                        





                                                                                



                                                    
{ buildPythonPackage, fetchPypi, lib, setuptools-scm }:

buildPythonPackage rec {
  pname = "qmk_dotty_dict";
  version = "1.3.0.post1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-O2EeOTZgv6poNcaOlHhLroD+B7hJCXi17KsDoNL8fqI=";
  };

  nativeBuildInputs = [ setuptools-scm ];

  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 = with maintainers; [ babariviere ];
  };
}