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

buildPythonPackage rec {
    name = "${pname}-${version}";
    pname = "agate-sql";
    version = "0.5.3";

    src = fetchPypi {
      inherit pname version;
      sha256 = "877b7b85adb5f0325455bba8d50a1623fa32af33680b554feca7c756a15ad9b4";
    };

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