bfe32a9723
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-dbf/versions (cherry picked from commit e5e77d76fd46fc8a4eeae4685cc5b6d81b2df23d)
29 lines
864 B
Nix
29 lines
864 B
Nix
{ stdenv, fetchPypi, buildPythonPackage, aenum, isPy3k, pythonOlder, enum34, python }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dbf";
|
|
version = "0.98.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "089h98gpjf9ffxzbkbd9k9wd8n3s7g0nhfpn3rf44h51hllgqxxb";
|
|
};
|
|
|
|
propagatedBuildInputs = [ aenum ] ++ stdenv.lib.optional (pythonOlder "3.4") [ enum34 ];
|
|
|
|
doCheck = !isPy3k;
|
|
# tests are not yet ported.
|
|
# https://groups.google.com/forum/#!topic/python-dbase/96rx2xmCG4w
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} dbf/test.py
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|