nixpkgs/pkgs/development/python-modules/agate-dbf/default.nix

21 lines
584 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage, agate, dbf, dbfread }:
2017-05-03 04:09:41 +00:00
buildPythonPackage rec {
pname = "agate-dbf";
2020-07-31 08:56:34 +00:00
version = "0.2.2";
2017-05-03 04:09:41 +00:00
propagatedBuildInputs = [ agate dbf dbfread ];
src = fetchPypi {
inherit pname version;
2020-07-31 08:56:34 +00:00
sha256 = "589682b78c5c03f2dc8511e6e3edb659fb7336cd118e248896bb0b44c2f1917b";
2017-05-03 04:09:41 +00:00
};
meta = with lib; {
2017-05-03 04:09:41 +00:00
description = "Adds read support for dbf files to agate";
homepage = "https://github.com/wireservice/agate-dbf";
2017-05-03 04:09:41 +00:00
license = with licenses; [ mit ];
maintainers = with maintainers; [ vrthra ];
};
}