forked from mirrors/nixpkgs
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:
parent
b4706b52cc
commit
b8fc7dffbf
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue