mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
python3Packages.sqlalchemy-continuum: init a 1.3.9
This commit is contained in:
parent
7918f8c47a
commit
ed5b736ace
2 changed files with 48 additions and 0 deletions
|
@ -0,0 +1,46 @@
|
||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, fetchPypi
|
||||||
|
, buildPythonPackage
|
||||||
|
, flask
|
||||||
|
, flask_login
|
||||||
|
, flask_sqlalchemy
|
||||||
|
, flexmock
|
||||||
|
, pytestCheckHook
|
||||||
|
, sqlalchemy
|
||||||
|
, sqlalchemy-utils
|
||||||
|
, sqlalchemy-i18n
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "SQLAlchemy-Continuum";
|
||||||
|
version = "1.3.9";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0b7q0rqy5q7m9yw7yl7jzrk8p1jh1hqmqvzf45rwmwxs724kfkjg";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
sqlalchemy
|
||||||
|
sqlalchemy-utils
|
||||||
|
];
|
||||||
|
|
||||||
|
# indicate tests that we don't have a database server at hand
|
||||||
|
DB = "sqlite";
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
sqlalchemy-i18n
|
||||||
|
flask
|
||||||
|
flask_login
|
||||||
|
flask_sqlalchemy
|
||||||
|
flexmock
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/kvesteri/sqlalchemy-continuum/";
|
||||||
|
description = "Versioning and auditing extension for SQLAlchemy";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
};
|
||||||
|
}
|
|
@ -6004,6 +6004,8 @@ in {
|
||||||
|
|
||||||
sqlalchemy-citext = callPackage ../development/python-modules/sqlalchemy-citext { };
|
sqlalchemy-citext = callPackage ../development/python-modules/sqlalchemy-citext { };
|
||||||
|
|
||||||
|
sqlalchemy-continuum = callPackage ../development/python-modules/sqlalchemy-continuum { };
|
||||||
|
|
||||||
sqlalchemy-i18n = callPackage ../development/python-modules/sqlalchemy-i18n { };
|
sqlalchemy-i18n = callPackage ../development/python-modules/sqlalchemy-i18n { };
|
||||||
|
|
||||||
sqlalchemy_migrate = callPackage ../development/python-modules/sqlalchemy-migrate { };
|
sqlalchemy_migrate = callPackage ../development/python-modules/sqlalchemy-migrate { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue