python3Packages.sqlalchemy-i18n: init at 1.0.3
This commit is contained in:
parent
a71acfeb0b
commit
7918f8c47a
2 changed files with 34 additions and 0 deletions
32
pkgs/development/python-modules/sqlalchemy-i18n/default.nix
Normal file
32
pkgs/development/python-modules/sqlalchemy-i18n/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ stdenv
|
||||
, lib
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, sqlalchemy
|
||||
, sqlalchemy-utils
|
||||
, psycopg2
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "SQLAlchemy-i18n";
|
||||
version = "1.0.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "15xah8643p29kciz365ixs9pbsflj92pzr2d9anbdh2biyf4cka8";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
sqlalchemy
|
||||
sqlalchemy-utils
|
||||
];
|
||||
|
||||
# tests require running a postgresql server
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/kvesteri/sqlalchemy-i18n";
|
||||
description = "Internationalization extension for SQLAlchemy models";
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
|
@ -6004,6 +6004,8 @@ in {
|
|||
|
||||
sqlalchemy-citext = callPackage ../development/python-modules/sqlalchemy-citext { };
|
||||
|
||||
sqlalchemy-i18n = callPackage ../development/python-modules/sqlalchemy-i18n { };
|
||||
|
||||
sqlalchemy_migrate = callPackage ../development/python-modules/sqlalchemy-migrate { };
|
||||
|
||||
sqlalchemy-utils = callPackage ../development/python-modules/sqlalchemy-utils { };
|
||||
|
|
Loading…
Reference in a new issue