python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / sqlalchemy-citext / default.nix
blob0c0d631bf151212246262b8ceacc8e31c2d76300
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   psycopg2,
6   sqlalchemy,
7 }:
9 buildPythonPackage rec {
10   pname = "sqlalchemy-citext";
11   version = "1.8.0";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "a1740e693a9a334e7c8f60ae731083fe75ce6c1605bb9ca6644a6f1f63b15b77";
17   };
19   propagatedBuildInputs = [
20     sqlalchemy
22     # not listed in `install_requires`, but is imported in citext/__init__.py
23     psycopg2
24   ];
26   # tests are not packaged in pypi tarball
27   doCheck = false;
29   pythonImportsCheck = [ "citext" ];
31   meta = with lib; {
32     description = "Sqlalchemy plugin that allows postgres use of CITEXT";
33     homepage = "https://github.com/mahmoudimus/sqlalchemy-citext";
34     license = licenses.mit;
35     maintainers = [ ];
36   };