depot/third_party/nixpkgs/pkgs/development/python-modules/agate-dbf/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

21 lines
611 B
Nix

{ lib, fetchPypi, buildPythonPackage, agate, dbf, dbfread }:
buildPythonPackage rec {
pname = "agate-dbf";
version = "0.2.2";
format = "setuptools";
propagatedBuildInputs = [ agate dbf dbfread ];
src = fetchPypi {
inherit pname version;
sha256 = "589682b78c5c03f2dc8511e6e3edb659fb7336cd118e248896bb0b44c2f1917b";
};
meta = with lib; {
description = "Adds read support for dbf files to agate";
homepage = "https://github.com/wireservice/agate-dbf";
license = with licenses; [ mit ];
maintainers = with maintainers; [ vrthra ];
};
}