python310Packages.ormar 0.12.1 -> 0.12.2 https://repology.org/project/python:ormar/versions attrpath: python310Packages.ormar Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/qn7smf6r5a1ji0aqvp5w642rs4wgpq0d-packages.json.drv building '/nix/store/qn7smf6r5a1ji0aqvp5w642rs4wgpq0d-packages.json.drv'... Going to be running update for following packages: - python3.10-ormar-0.12.1 Press Enter key to continue... Running update for: - python3.10-ormar-0.12.1: UPDATING ... - python3.10-ormar-0.12.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/ormar/default.nix b/pkgs/development/python-modules/ormar/default.nix index 90b56b3cd4d7..e50d9b2788fa 100644 --- a/pkgs/development/python-modules/ormar/default.nix +++ b/pkgs/development/python-modules/ormar/default.nix @@ -27,7 +27,7 @@ buildPythonPackage rec { pname = "ormar"; - version = "0.12.1"; + version = "0.12.2"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -36,7 +36,7 @@ buildPythonPackage rec { owner = "collerek"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-7d0vmYDN1EjzNWmylb/As4ywo8YYzQ88UwigIsVnwMM="; + hash = "sha256-Yd5ex0bcy61zq5Sn2dKeb98s/CMxUWnyGx6jFWQ3RUs="; }; pythonRelaxDeps = [ No auto update branch exists Old version 0.12.1" not present in staging derivation file with contents: { lib , aiomysql , aiopg , aiosqlite , asyncpg , buildPythonPackage , cryptography , databases , fastapi , fetchFromGitHub , httpx , importlib-metadata , mysqlclient , nest-asyncio , orjson , poetry-core , psycopg2 , pydantic , pymysql , pytest-asyncio , pytestCheckHook , pythonOlder , pythonRelaxDepsHook , sqlalchemy , typing-extensions }: buildPythonPackage rec { pname = "ormar"; version = "0.12.2"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "collerek"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-Yd5ex0bcy61zq5Sn2dKeb98s/CMxUWnyGx6jFWQ3RUs="; }; pythonRelaxDeps = [ "databases" "pydantic" "SQLAlchemy" ]; nativeBuildInputs = [ poetry-core pythonRelaxDepsHook ]; propagatedBuildInputs = [ databases psycopg2 pydantic sqlalchemy psycopg2 ] ++ lib.optionals (pythonOlder "3.8") [ typing-extensions importlib-metadata ]; passthru.optional-dependencies = { postgresql = [ asyncpg ]; postgres = [ asyncpg ]; aiopg = [ aiopg ]; mysql = [ aiomysql ]; sqlite = [ aiosqlite ]; orjson = [ orjson ]; crypto = [ cryptography ]; all = [ aiomysql aiopg aiosqlite asyncpg cryptography mysqlclient orjson pymysql ]; }; nativeCheckInputs = [ pytestCheckHook ]; checkInputs = [ fastapi httpx nest-asyncio pytest-asyncio ] ++ passthru.optional-dependencies.all; disabledTestPaths = [ "benchmarks/test_benchmark_*.py" ]; disabledTests = [ # TypeError: Object of type bytes is not JSON serializable "test_bulk_operations_with_json" "test_all_endpoints" # Tests require a database "test_model_multiple_instances_of_same_table_in_schema" "test_load_all_multiple_instances_of_same_table_in_schema" "test_filter_groups_with_instances_of_same_table_in_schema" "test_model_multiple_instances_of_same_table_in_schema" "test_right_tables_join" "test_multiple_reverse_related_objects" "test_related_with_defaults" "test_model_creation" "test_default_orders_is_applied_on_related_two_fields" "test_default_orders_is_applied_from_relation" "test_sum_method" "test_count_method " "test_queryset_methods" "test_queryset_update" "test_selecting_subset" "test_selecting_subset_of_through_model" "test_simple_queryset_values" "test_queryset_values_nested_relation" "test_queryset_simple_values_list" "test_queryset_nested_relation_values_list" "test_queryset_nested_relation_subset_of_fields_values_list" "test_m2m_values" "test_nested_m2m" "test_nested_flatten_and_exception" "test_queryset_values_multiple_select_related" "test_querysetproxy_values" "test_querysetproxy_values_list" "test_reverse_many_to_many_cascade" "test_not_saved_raises_error" "test_not_existing_raises_error" "test_assigning_related_objects" "test_quering_of_the_m2m_models" "test_removal_of_the_relations" "test_selecting_related" "test_adding_unsaved_related" "test_removing_unsaved_related" "test_quering_of_related_model_works_but_no_result" ]; pythonImportsCheck = [ "ormar" ]; meta = with lib; { description = "Async ORM with fastapi in mind and pydantic validation"; homepage = "https://github.com/collerek/ormar"; changelog = "https://github.com/collerek/ormar/releases/tag/${version}"; license = licenses.mit; maintainers = with maintainers; [ andreasfelix ]; }; }