Files
nixpkgs/pkgs/development/python-modules/dotty-dict/default.nix
T
Anderson Torres 9a56705f94 various: remove AndersonTorres from maintainers
As a short note, I am relinquishing the maintenance of many packages, because it
is too much to me to handle right now.
2024-11-30 16:29:06 -03:00

28 lines
547 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "dotty_dict";
version = "1.3.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-SwFuA7iuJlU5dXpT66JLm/2lBvuU+84L7oQ8bwVUGhU=";
};
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; [ ];
};
}