about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dotty-dict
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-01-17 20:03:17 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-01-17 20:29:45 -0300
commitf7481bcb3e5f3308089363734b75f5d84fe40d4d (patch)
treec35dfb644c1484e2e14db69e643073e9bcff8d5c /pkgs/development/python-modules/dotty-dict
parent52a24dcf7830ee84c5ab37a0e3c04aa7d76702a5 (diff)
pythonPackages.dotty-dict: init at 1.3.0
Diffstat (limited to 'pkgs/development/python-modules/dotty-dict')
-rw-r--r--pkgs/development/python-modules/dotty-dict/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/dotty-dict/default.nix b/pkgs/development/python-modules/dotty-dict/default.nix
new file mode 100644
index 0000000000000..22d469b966937
--- /dev/null
+++ b/pkgs/development/python-modules/dotty-dict/default.nix
@@ -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 ];
+  };
+}