Files
nixpkgs/pkgs/development/python-modules/agate-dbf/default.nix
T
Martin Weinelt 816e116715 python3Packages.agate-dbf: 0.2.3 -> 0.2.4
This commit was automatically generated using update-python-libraries.
2026-02-01 16:40:38 +01:00

43 lines
829 B
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
setuptools,
agate,
dbf,
dbfread,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "agate-dbf";
version = "0.2.4";
pyproject = true;
src = fetchFromGitHub {
owner = "wireservice";
repo = "agate-dbf";
tag = finalAttrs.version;
hash = "sha256-z68nYig+Z1/C+ys7HmjljdnHhUTqH58iBSbqnLnLFs4=";
};
build-system = [ setuptools ];
dependencies = [
agate
dbfread
];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
changelog = "https://github.com/wireservice/agate-dbf/blob/${finalAttrs.src.tag}/CHANGELOG.rst";
description = "Adds read support for dbf files to agate";
homepage = "https://github.com/wireservice/agate-dbf";
license = with lib.licenses; [ mit ];
maintainers = [ ];
};
})