about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/agate-dbf/default.nix
blob: 1f3055b4600ddff8c13436f6682f382faa220c56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, fetchPypi, buildPythonPackage, agate, dbf, dbfread }:

buildPythonPackage rec {
    pname = "agate-dbf";
    version = "0.2.3";
    format = "setuptools";

    propagatedBuildInputs = [ agate dbf dbfread ];

    src = fetchPypi {
      inherit pname version;
      sha256 = "sha256-mKK1N1cTbMdNwpflniEB009tSPQfdBVrtsDeJruiqj8=";
    };

    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 ];
    };
}