mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
35 lines
661 B
Nix
35 lines
661 B
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
sqlalchemy,
|
|
sqlalchemy-utils,
|
|
six,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sqlalchemy-i18n";
|
|
version = "1.1.0";
|
|
|
|
src = fetchPypi {
|
|
pname = "SQLAlchemy-i18n";
|
|
inherit version;
|
|
sha256 = "de33376483a581ca14218d8f57a114466c5f72b674a95839b6c4564a6e67796f";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
sqlalchemy
|
|
sqlalchemy-utils
|
|
six
|
|
];
|
|
|
|
# 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;
|
|
};
|
|
}
|