2020-09-09 09:43:00 +01:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage, agate, sqlalchemy, crate }:
|
2017-05-03 05:12:09 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "agate-sql";
|
2020-07-31 09:56:35 +01:00
|
|
|
version = "0.5.5";
|
2017-05-03 05:12:09 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-07-31 09:56:35 +01:00
|
|
|
sha256 = "50a39754babef6cd0d1b1e75763324a49593394fe46ab1ea9546791b5e6b69a7";
|
2017-05-03 05:12:09 +01:00
|
|
|
};
|
|
|
|
|
2020-09-09 09:43:00 +01:00
|
|
|
propagatedBuildInputs = [ agate sqlalchemy crate ];
|
2017-05-03 05:12:09 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Adds SQL read/write support to agate.";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/wireservice/agate-sql";
|
2017-05-03 05:12:09 +01:00
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ vrthra ];
|
|
|
|
};
|
|
|
|
}
|