about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/agate-dbf/default.nix
blob: ea3f26cd3155bc13d4d8472a05a2ff7ca9152774 (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.0";

    propagatedBuildInputs = [ agate dbf dbfread ];

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

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