Files
nixpkgs/pkgs/development/python-modules/dbfread/default.nix
Ihar Hrachyshka cca3b04b44 treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 19:01:23 +01:00

24 lines
457 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
}:
buildPythonPackage rec {
pname = "dbfread";
version = "2.0.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "07c8a9af06ffad3f6f03e8fe91ad7d2733e31a26d2b72c4dd4cfbae07ee3b73d";
};
meta = {
description = "Read DBF Files with Python";
homepage = "https://dbfread.readthedocs.org/";
license = with lib.licenses; [ mit ];
maintainers = [ ];
};
}