summary refs log tree commit diff
path: root/pkgs/development/python-modules/dbf/default.nix
blob: 2343ea2918b1b28f78a5a22e09fadbaaecf5cf0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchPypi, buildPythonPackage, aenum, isPy3k }:

buildPythonPackage rec {
    pname = "dbf";
    version = "0.96.8";
    name = "${pname}-${version}";

    src = fetchPypi {
      inherit pname version;
      sha256 = "1z8n7s4cka6x9ybh4qpfhj51v2qrk38h2f06npizzhm0hmn6r3v1";
    };

    propagatedBuildInputs = [ aenum ];

    doCheck = !isPy3k;
    # tests are not yet ported.
    # https://groups.google.com/forum/#!topic/python-dbase/96rx2xmCG4w

    meta = with stdenv.lib; {
      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 ];
    };
}