ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / qmk-dotty-dict / default.nix
blob4e52dc991795a385b167def19884d496ff8bc4b2
1 { buildPythonPackage, fetchPypi, lib, setuptools-scm }:
3 buildPythonPackage rec {
4   pname = "qmk_dotty_dict";
5   version = "1.3.0.post1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "sha256-O2EeOTZgv6poNcaOlHhLroD+B7hJCXi17KsDoNL8fqI=";
10   };
12   nativeBuildInputs = [ setuptools-scm ];
14   doCheck = false;
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   };