about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sqlalchemy-i18n/default.nix
blob: a33a9783319ffe701d02f2f3c66ce7d9968d28b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ 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;
  };
}