pythonpackages.dbf: init dbf at 0.94.003

Pure python package for reading/writing dBase, FoxPro, and Visual FoxPro .dbf
files
This commit is contained in:
Rahul Gopinath 2016-05-09 10:39:02 -07:00
parent 0b8ef88942
commit e7e22333f6

View File

@ -91,6 +91,24 @@ in modules // {
bugseverywhere = callPackage ../applications/version-management/bugseverywhere {};
dbf = buildPythonPackage rec {
name = "dbf-0.94.003";
disabled = isPy3k;
meta = {
description = "Pure python package for reading/writing dBase, FoxPro, and Visual FoxPro .dbf files";
homepage = "https://pypi.python.org/pypi/dbf";
license = licenses.bsd2;
maintainers = with maintainers; [ vrthra ];
};
src = pkgs.fetchurl {
url = "mirror://pypi/d/dbf/${name}.tar.gz";
sha256 = "0i2454hwg67079jb56x663wqmmwr55pcr6c76q2415185y6nhny9";
};
};
dbus = callPackage ../development/python-modules/dbus {
dbus = pkgs.dbus;
};