summary refs log tree commit diff
path: root/pkgs/development/python-modules/agate-sql/default.nix
blob: 82da607b3ef032a8c4f12eba1f068c6774d412f8 (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, sqlalchemy }:

buildPythonPackage rec {
    pname = "agate-sql";
    version = "0.5.4";

    src = fetchPypi {
      inherit pname version;
      sha256 = "9277490ba8b8e7c747a9ae3671f52fe486784b48d4a14e78ca197fb0e36f281b";
    };

    propagatedBuildInputs = [ agate sqlalchemy ];

    meta = with stdenv.lib; {
      description = "Adds SQL read/write support to agate.";
      homepage    = https://github.com/wireservice/agate-sql;
      license     = with licenses; [ mit ];
      maintainers = with maintainers; [ vrthra ];
    };
}