summary refs log tree commit diff
path: root/pkgs/top-level/python-packages.nix
diff options
context:
space:
mode:
authorRahul Gopinath <rahul@gopinath.org>2016-05-09 10:39:21 -0700
committerRahul Gopinath <rahul@gopinath.org>2016-05-09 10:39:21 -0700
commitb8fc7dffbf284e11dad28408fe79e9842fc9055a (patch)
tree70e1a80098da75066bd427c91f9d2b23f25cee53 /pkgs/top-level/python-packages.nix
parentb4706b52cceac4098e544c13f7bf6973c849c724 (diff)
pythonpackages.agate-dbf: init agate-dbf at 0.1.0
agate is a Python data analysis library that is optimized for humans instead of
machines. It is an alternative to numpy and pandas that helps you solve
real-world problems with readable code.
Diffstat (limited to 'pkgs/top-level/python-packages.nix')
-rw-r--r--pkgs/top-level/python-packages.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 7f7dc9a660f3e..7ff9f4286d4c6 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -104,6 +104,25 @@ in modules // {
     };
   };
 
+  agate-dbf = buildPythonPackage rec {
+    name = "agate-dbf-0.1.0";
+    disabled = isPy3k;
+
+    meta = {
+      description = "Adds read support for dbf files to agate";
+      homepage    = "https://github.com/wireservice/agate-dbf";
+      license     = licenses.mit;
+      maintainers = with maintainers; [ vrthra ];
+    };
+
+    propagatedBuildInputs = with self; [ agate dbf dbfread ];
+
+    src = pkgs.fetchurl {
+      url = "mirror://pypi/a/agate-dbf/${name}.tar.gz";
+      sha256 = "0xzz834lh4xbl342c6wmxqy7ynmsrjp42bsjahfcxhsgq33vzngz";
+    };
+  };
+
   # packages defined elsewhere
 
   blivet = callPackage ../development/python-modules/blivet { };