depot/third_party/nixpkgs/pkgs/development/python-modules/dbf/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

36 lines
703 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; [ ];
};
}