From b4706b52cceac4098e544c13f7bf6973c849c724 Mon Sep 17 00:00:00 2001 From: Rahul Gopinath Date: Mon, 9 May 2016 10:39:18 -0700 Subject: [PATCH] pythonpackages.agate: init agate at 1.2.2 agate is a Python data analysis library that is optimized for humans instead of machines. It is an alternative to numpy and pandas that solves real-world problems with readable code. --- pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b31a61813d3..7f7dc9a660f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -85,6 +85,25 @@ in modules // { setuptools = callPackage ../development/python-modules/setuptools { }; + agate = buildPythonPackage rec { + name = "agate-1.2.2"; + disabled = isPy3k; + + meta = { + description = "A Python data analysis library that is optimized for humans instead of machines"; + homepage = "https://github.com/wireservice/agate"; + license = licenses.mit; + maintainers = with maintainers; [ vrthra ]; + }; + + propagatedBuildInputs = with self; [ discid six parsedatetime isodate Babel pytimeparse ]; + + src = pkgs.fetchurl { + url = "mirror://pypi/a/agate/${name}.tar.gz"; + sha256 = "0h2w30a0zhylivz86d823a05hvg8w8p61lmm855z1wwkgml9l9d4"; + }; + }; + # packages defined elsewhere blivet = callPackage ../development/python-modules/blivet { };