pythonpackages.dbfread: init dbfread at 2.0.5
This library reads DBF files and returns the data as native Python data types for further processing. It is primarily intended for batch jobs and one-off scripts.
This commit is contained in:
parent
e7e22333f6
commit
b83a9036ec
@ -109,6 +109,25 @@ in modules // {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
dbfread = buildPythonPackage rec {
|
||||||
|
name = "dbfread-2.0.5";
|
||||||
|
disabled = isPy3k;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Read DBF Files with Python";
|
||||||
|
homepage = "http://dbfread.readthedocs.org/";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ vrthra ];
|
||||||
|
};
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "mirror://pypi/d/dbfread/${name}.tar.gz";
|
||||||
|
sha256 = "0r5axq9ax0czyapm7b69krcv22r1nyb4vci7c5x8mx8pq1axim93";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
dbus = callPackage ../development/python-modules/dbus {
|
dbus = callPackage ../development/python-modules/dbus {
|
||||||
dbus = pkgs.dbus;
|
dbus = pkgs.dbus;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user