pythonPackages.dotty-dict: init at 1.3.0
This commit is contained in:
parent
52a24dcf78
commit
f7481bcb3e
26
pkgs/development/python-modules/dotty-dict/default.nix
Normal file
26
pkgs/development/python-modules/dotty-dict/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
@ -1917,6 +1917,8 @@ in {
|
||||
|
||||
dopy = callPackage ../development/python-modules/dopy { };
|
||||
|
||||
dotty-dict = callPackage ../development/python-modules/dotty-dict { };
|
||||
|
||||
dot2tex = callPackage ../development/python-modules/dot2tex { inherit (pkgs) graphviz; };
|
||||
|
||||
dparse = callPackage ../development/python-modules/dparse { };
|
||||
|
Loading…
Reference in New Issue
Block a user