My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/qmk-dotty-dict/default.nix

27 lines
795 B

{ 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 ];
};
}