Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / sqlalchemy-citext / default.nix
blobb040ee597ef8bd5f66a6306ae360b37c931cfa33
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , psycopg2
5 , sqlalchemy
6 }:
8 buildPythonPackage rec {
9   pname = "sqlalchemy-citext";
10   version = "1.8.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "a1740e693a9a334e7c8f60ae731083fe75ce6c1605bb9ca6644a6f1f63b15b77";
16   };
18   propagatedBuildInputs = [
19     sqlalchemy
21     # not listed in `install_requires`, but is imported in citext/__init__.py
22     psycopg2
23   ];
25   # tests are not packaged in pypi tarball
26   doCheck = false;
28   pythonImportsCheck = [ "citext" ];
30   meta = with lib; {
31     description = "A sqlalchemy plugin that allows postgres use of CITEXT";
32     homepage = "https://github.com/mahmoudimus/sqlalchemy-citext";
33     license = licenses.mit;
34     maintainers = [ ];
35   };