Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / agate-dbf / default.nix
blob0299a94ebb0fae8cbd1aa71e2b792472ab6368f3
1 { lib, fetchPypi, buildPythonPackage, agate, dbf, dbfread }:
3 buildPythonPackage rec {
4     pname = "agate-dbf";
5     version = "0.2.2";
7     propagatedBuildInputs = [ agate dbf dbfread ];
9     src = fetchPypi {
10       inherit pname version;
11       sha256 = "589682b78c5c03f2dc8511e6e3edb659fb7336cd118e248896bb0b44c2f1917b";
12     };
14     meta = with lib; {
15       description = "Adds read support for dbf files to agate";
16       homepage    = "https://github.com/wireservice/agate-dbf";
17       license     = with licenses; [ mit ];
18       maintainers = with maintainers; [ vrthra ];
19     };