aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/aadict/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/aadict/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/aadict/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/aadict/default.nix b/nixpkgs/pkgs/development/python-modules/aadict/default.nix
new file mode 100644
index 00000000000..2587260748f
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/aadict/default.nix
@@ -0,0 +1,27 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, six
+, nose
+, coverage
+}:
+
+buildPythonPackage rec {
+ pname = "aadict";
+ version = "0.2.3";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "013pn9ii6mkql6khgdvsd1gi7zmya418fhclm5fp7dfvann2hwx7";
+ };
+
+ propagatedBuildInputs = [ six ];
+ checkInputs = [ nose coverage ];
+
+ meta = with stdenv.lib; {
+ homepage = "https://github.com/metagriffin/aadict";
+ description = "An auto-attribute dict (and a couple of other useful dict functions).";
+ maintainers = with maintainers; [ glittershark ];
+ license = licenses.gpl3;
+ };
+}