about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aenum
diff options
context:
space:
mode:
authorRahul Gopinath <rahul@gopinath.org>2017-02-11 16:12:10 -0800
committerFranz Pletz <fpletz@fnordicwalking.de>2017-02-15 10:25:37 +0100
commite69f76470a58aa80fab4095cc7a47880a90ec3c6 (patch)
tree5ba9709c59133df7c83cb28068e51a3b995fd253 /pkgs/development/python-modules/aenum
parentce8af120f222ef16de8f2ff5d130ef1c0a76080e (diff)
aenum: Init at 1.4.7
Diffstat (limited to 'pkgs/development/python-modules/aenum')
-rw-r--r--pkgs/development/python-modules/aenum/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/aenum/default.nix b/pkgs/development/python-modules/aenum/default.nix
new file mode 100644
index 0000000000000..1233b94dccdf4
--- /dev/null
+++ b/pkgs/development/python-modules/aenum/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchPypi, buildPythonPackage }:
+
+buildPythonPackage rec {
+  pname = "aenum";
+  version = "1.4.7";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1bvn2k53nz99fiwql5fkl0fh7xjw8ama9qzdjp36609mpk05ikl8";
+  };
+
+  meta = {
+    description = "Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants";
+    maintainer = with stdenv.lib.maintainers; [ vrthra ];
+    license = with stdenv.lib.licenses; [ bsd3 ];
+    homepage = https://bitbucket.org/stoneleaf/aenum;
+  };
+}