about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/dotty-dict/default.nix
blob: a2af0920da9ecc7fe187fdb4c1d36140538edf5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib
, fetchPypi
, buildPythonPackage
, setuptools-scm
}:

buildPythonPackage rec {
  pname = "dotty_dict";
  version = "1.3.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-6wA1o2KezYQ5emjx9C8elKvRw0V3oZzT6srTMe58uvA=";
  };

  nativeBuildInputs = [ setuptools-scm ];

  doCheck = false;

  meta = with lib; {
    description = "Dictionary wrapper for quick access to deeply nested keys";
    homepage = "https://dotty-dict.readthedocs.io";
    license = licenses.mit;
    maintainers = with maintainers; [ AndersonTorres ];
  };
}