aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/agate-dbf/default.nix
blob: 09556ea891b32860c3a71bf6d28bd1aa0d365114 (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.2";

    propagatedBuildInputs = [ agate dbf dbfread ];

    src = fetchPypi {
      inherit pname version;
      sha256 = "589682b78c5c03f2dc8511e6e3edb659fb7336cd118e248896bb0b44c2f1917b";
    };

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