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

buildPythonPackage rec {
    pname = "agate-dbf";
    version = "0.2.1";

    propagatedBuildInputs = [ agate dbf dbfread ];

    src = fetchPypi {
      inherit pname version;
      sha256 = "0brprva3vjypb5r9lk6zy10jazp681rxsqxzhz2lr869ir4krj80";
    };

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