2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchPypi, buildPythonPackage, aenum, isPy3k, pythonOlder, enum34, python }:
|
2017-05-03 05:13:50 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "dbf";
|
2020-08-16 18:30:57 +01:00
|
|
|
version = "0.99.0";
|
2017-05-03 05:13:50 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 18:30:57 +01:00
|
|
|
sha256 = "a4a7a8cdc113d840142d21a796c16c7d329ad35c48f17156446732c83ebc571a";
|
2017-05-03 05:13:50 +01:00
|
|
|
};
|
|
|
|
|
2019-11-24 19:14:31 +00:00
|
|
|
propagatedBuildInputs = [ aenum ] ++ stdenv.lib.optional (pythonOlder "3.4") enum34;
|
2017-05-03 05:13:50 +01:00
|
|
|
|
|
|
|
doCheck = !isPy3k;
|
|
|
|
# tests are not yet ported.
|
|
|
|
# https://groups.google.com/forum/#!topic/python-dbase/96rx2xmCG4w
|
|
|
|
|
2018-02-19 18:04:16 +00:00
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} dbf/test.py
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-05-03 05:13:50 +01:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|