2021-01-25 00:26:54 -08:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, agate, dbf, dbfread }:
|
2017-05-02 21:09:41 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "agate-dbf";
|
2020-07-31 01:56:34 -07:00
|
|
|
version = "0.2.2";
|
2017-05-02 21:09:41 -07:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ agate dbf dbfread ];
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-07-31 01:56:34 -07:00
|
|
|
sha256 = "589682b78c5c03f2dc8511e6e3edb659fb7336cd118e248896bb0b44c2f1917b";
|
2017-05-02 21:09:41 -07:00
|
|
|
};
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2017-05-02 21:09:41 -07:00
|
|
|
description = "Adds read support for dbf files to agate";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/wireservice/agate-dbf";
|
2017-05-02 21:09:41 -07:00
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ vrthra ];
|
|
|
|
};
|
|
|
|
}
|