mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
8e26cefa43
Diff: https://github.com/kvesteri/sqlalchemy-utils/compare/refs/tags/0.41.2...0.42.2 Changelog: https://github.com/kvesteri/sqlalchemy-utils/releases/tag/0.42.2
104 lines
2.0 KiB
Nix
104 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
arrow,
|
|
babel,
|
|
colour,
|
|
cryptography,
|
|
docutils,
|
|
fetchFromGitHub,
|
|
flexmock,
|
|
furl,
|
|
# intervals,
|
|
jinja2,
|
|
passlib,
|
|
pendulum,
|
|
pg8000,
|
|
phonenumbers,
|
|
psycopg2,
|
|
psycopg2cffi,
|
|
pygments,
|
|
pymysql,
|
|
pyodbc,
|
|
pytestCheckHook,
|
|
python-dateutil,
|
|
pythonOlder,
|
|
pytz,
|
|
setuptools,
|
|
sqlalchemy,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sqlalchemy-utils";
|
|
version = "0.42.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kvesteri";
|
|
repo = "sqlalchemy-utils";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-jC8onlCiuzpMlJ3EzpzCnQ128xpkLzrZEuGWQv7pvVE=";
|
|
};
|
|
|
|
patches = [ ./skip-database-tests.patch ];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [ sqlalchemy ];
|
|
|
|
optional-dependencies = {
|
|
babel = [ babel ];
|
|
arrow = [ arrow ];
|
|
pendulum = [ pendulum ];
|
|
#intervals = [ intervals ];
|
|
phone = [ phonenumbers ];
|
|
password = [ passlib ];
|
|
color = [ colour ];
|
|
timezone = [ python-dateutil ];
|
|
url = [ furl ];
|
|
encrypted = [ cryptography ];
|
|
};
|
|
|
|
nativeCheckInputs =
|
|
[
|
|
pytestCheckHook
|
|
pygments
|
|
jinja2
|
|
docutils
|
|
flexmock
|
|
psycopg2
|
|
pg8000
|
|
pytz
|
|
python-dateutil
|
|
pymysql
|
|
pyodbc
|
|
]
|
|
++ lib.flatten (builtins.attrValues optional-dependencies)
|
|
++ lib.optionals (pythonOlder "3.12") [
|
|
# requires distutils, which were removed in 3.12
|
|
psycopg2cffi
|
|
];
|
|
|
|
disabledTests = [
|
|
"test_create_database_twice"
|
|
"test_create_and_drop"
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
"-W"
|
|
"ignore::DeprecationWarning"
|
|
];
|
|
|
|
pythonImportsCheck = [ "sqlalchemy_utils" ];
|
|
|
|
meta = with lib; {
|
|
description = "Various utility functions and datatypes for SQLAlchemy";
|
|
homepage = "https://github.com/kvesteri/sqlalchemy-utils";
|
|
changelog = "https://github.com/kvesteri/sqlalchemy-utils/releases/tag/${version}";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ eadwu ];
|
|
};
|
|
}
|