5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
36 lines
685 B
Nix
36 lines
685 B
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
aenum,
|
|
pythonOlder,
|
|
python,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dbf";
|
|
version = "0.99.9";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-MFEi1U0RNvrfDtV4HpvPgKTCibAh76z7Gnmj32IubYw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ aenum ];
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} -m dbf.test
|
|
'';
|
|
|
|
pythonImportsCheck = [ "dbf" ];
|
|
|
|
meta = with lib; {
|
|
description = "Module for reading/writing dBase, FoxPro, and Visual FoxPro .dbf files";
|
|
homepage = "https://github.com/ethanfurman/dbf";
|
|
license = licenses.bsd2;
|
|
maintainers = [ ];
|
|
};
|
|
}
|