1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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.
This commit is contained in:
Rahul Gopinath 2016-05-09 10:39:21 -07:00
parent b4706b52cc
commit b8fc7dffbf

View file

@ -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 { };