summary refs log tree commit diff
path: root/pkgs/development/python-modules/dictionaries
diff options
context:
space:
mode:
authorCorbin <cds@corbinsimpson.com>2018-06-25 12:17:41 -0700
committerCorbin <cds@corbinsimpson.com>2018-07-28 07:26:07 -0700
commitee903f23cdba587a219e67e840f88e6f12f51989 (patch)
treed6948f6ea6262a388798c2c85f46af8ddcaad270 /pkgs/development/python-modules/dictionaries
parent5a2ee49f3c8b2be19866e80c2a0e301ca3e4961b (diff)
downloadnixpkgs-ee903f23cdba587a219e67e840f88e6f12f51989.tar
nixpkgs-ee903f23cdba587a219e67e840f88e6f12f51989.tar.gz
nixpkgs-ee903f23cdba587a219e67e840f88e6f12f51989.tar.bz2
nixpkgs-ee903f23cdba587a219e67e840f88e6f12f51989.tar.lz
nixpkgs-ee903f23cdba587a219e67e840f88e6f12f51989.tar.xz
nixpkgs-ee903f23cdba587a219e67e840f88e6f12f51989.tar.zst
nixpkgs-ee903f23cdba587a219e67e840f88e6f12f51989.zip
pythonPackages.dictionaries: init at 0.0.1
Diffstat (limited to 'pkgs/development/python-modules/dictionaries')
-rw-r--r--pkgs/development/python-modules/dictionaries/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/dictionaries/default.nix b/pkgs/development/python-modules/dictionaries/default.nix
new file mode 100644
index 00000000000..0deab276255
--- /dev/null
+++ b/pkgs/development/python-modules/dictionaries/default.nix
@@ -0,0 +1,19 @@
+{ buildPythonPackage, fetchPypi, lib, six }:
+
+buildPythonPackage rec {
+  pname = "dictionaries";
+  version = "0.0.1";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1jx2ph509sk4l7spslz16y8l6xn97d13nspn4ds2lxn5ward9ihy";
+  };
+
+  buildInputs = [ six ];
+
+  meta = {
+    description = "Dict implementations with attribute access";
+    license = lib.licenses.mit;
+    maintainers = [ lib.maintainers.MostAwesomeDude ];
+  };
+}