587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
39 lines
714 B
Nix
39 lines
714 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 = with maintainers; [ vrthra ];
|
|
};
|
|
}
|