python312Packages.dash-renderer: remove (#369714)
[NixPkgs.git] / pkgs / development / python-modules / sqlalchemy-i18n / default.nix
blobb3540712d926e640338019a375cedfe1e9343e11
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   sqlalchemy,
6   sqlalchemy-utils,
7   six,
8 }:
10 buildPythonPackage rec {
11   pname = "sqlalchemy-i18n";
12   version = "1.1.0";
14   src = fetchPypi {
15     pname = "SQLAlchemy-i18n";
16     inherit version;
17     sha256 = "de33376483a581ca14218d8f57a114466c5f72b674a95839b6c4564a6e67796f";
18   };
20   propagatedBuildInputs = [
21     sqlalchemy
22     sqlalchemy-utils
23     six
24   ];
26   # tests require running a postgresql server
27   doCheck = false;
29   meta = with lib; {
30     homepage = "https://github.com/kvesteri/sqlalchemy-i18n";
31     description = "Internationalization extension for SQLAlchemy models";
32     license = licenses.bsd3;
33   };