2017-05-03 05:09:41 +01:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage, agate, dbf, dbfread }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "agate-dbf";
|
2019-04-07 22:06:50 +01:00
|
|
|
version = "0.2.1";
|
2017-05-03 05:09:41 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ agate dbf dbfread ];
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-07 22:06:50 +01:00
|
|
|
sha256 = "0brprva3vjypb5r9lk6zy10jazp681rxsqxzhz2lr869ir4krj80";
|
2017-05-03 05:09:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.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 ];
|
|
|
|
};
|
|
|
|
}
|