depot/third_party/nixpkgs/pkgs/development/python-modules/dbf/default.nix
Default email ae2dc6aea6 Project import generated by Copybara.
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
2024-10-11 07:15:48 +02:00

41 lines
857 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=";
};
# Workaround for https://github.com/ethanfurman/dbf/issues/48
patches = lib.optional python.stdenv.isDarwin ./darwin.patch;
propagatedBuildInputs = [ aenum ];
checkPhase = ''
runHook preCheck
${python.interpreter} -m dbf.test
runHook postCheck
'';
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 = [ ];
};
}