python.pkgs.sqlsoup: init at 0.9.1

This commit is contained in:
Robin Gloster 2020-04-13 23:40:39 +02:00
parent 9d81c54b31
commit cb62bf4979
No known key found for this signature in database
GPG Key ID: D5C458DF6DD97EDF
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ buildPythonPackage, fetchPypi, lib, sqlalchemy, nose }:
buildPythonPackage rec {
pname = "sqlsoup";
version = "0.9.1";
src = fetchPypi {
inherit pname version;
sha256 = "1mj00fhxj75ac3i8xk9jmm7hvcjz9p4x2r3yndcwsgb659rvgbrg";
};
propagatedBuildInputs = [ sqlalchemy ];
checkInputs = [ nose ];
meta = with lib; {
description = "A one step database access tool, built on the SQLAlchemy ORM";
homepage = "https://bitbucket.org/zzzeek/sqlsoup";
license = licenses.mit;
maintainers = [ maintainers.globin ];
};
}

View File

@ -5786,6 +5786,8 @@ in {
sqlalchemy-utils = callPackage ../development/python-modules/sqlalchemy-utils { };
sqlsoup = callPackage ../development/python-modules/sqlsoup { };
staticjinja = callPackage ../development/python-modules/staticjinja { };
statsmodels = callPackage ../development/python-modules/statsmodels { };