aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/agate-dbf/default.nix
blob: bfb5300a82b1cf1c743b59f56a72dcfb5e2e5d24 (plain)
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 ];
    };
}