about summary refs log tree commit diff
path: root/pkgs/development/python-modules/deep_merge
diff options
context:
space:
mode:
authorLe Anh Duc <anhdle14@icloud.com>2020-12-23 14:10:27 +0900
committerLe Anh Duc <anhdle14@icloud.com>2021-01-03 19:37:57 +0900
commit7dc9da6eede8ce11f02c333cc847689a86edcf8e (patch)
treef6854d6b854b13b6e977449c73267e254bde572b /pkgs/development/python-modules/deep_merge
parent90b522e0c693484fcdfb875cfe3518bfdc121ce9 (diff)
deep_merge: init at 0.0.4
Co-authored-by: Guillaume Girol <symphorien@users.noreply.github.com>
Diffstat (limited to 'pkgs/development/python-modules/deep_merge')
-rw-r--r--pkgs/development/python-modules/deep_merge/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/deep_merge/default.nix b/pkgs/development/python-modules/deep_merge/default.nix
new file mode 100644
index 0000000000000..533bc6aa34775
--- /dev/null
+++ b/pkgs/development/python-modules/deep_merge/default.nix
@@ -0,0 +1,24 @@
+{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, nose }:
+
+buildPythonPackage rec {
+  pname = "deep_merge";
+  version = "0.0.4";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "tUQV+Qk0xC4zQRTihky01OczWzStOW41rYYQyWBlpH4=";
+  };
+
+  checkInputs = [
+    nose
+  ];
+
+  doCheck = false;
+
+  meta = with lib; {
+    description = "This library contains a simple utility for deep-merging dictionaries and the data structures they contain";
+    homepage = "https://github.com/halfak/deep_merge";
+    license = licenses.mit;
+    maintainers = [ maintainers.anhdle14 ];
+  };
+}