Files
nixpkgs/pkgs/development/python-modules/sqlalchemy-file/default.nix
Artturin e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00

79 lines
1.9 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
hatchling,
fasteners,
libcloud,
pillow,
pytestCheckHook,
sqlalchemy,
sqlmodel,
}:
buildPythonPackage rec {
pname = "sqlalchemy-file";
version = "0.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jowilf";
repo = "sqlalchemy-file";
rev = version;
hash = "sha256-gtW7YA/rQ48tnqPdypMnSqqtwb90nhAkiQNhgEr1M3I=";
};
build-system = [ hatchling ];
dependencies = [
libcloud
sqlalchemy
];
nativeCheckInputs = [
pytestCheckHook
fasteners
pillow
sqlmodel
];
preCheck = ''
# used in get_test_container in tests/utils.py
# fixes FileNotFoundError: [Errno 2] No such file or directory: '/tmp/storage/...'
mkdir .storage
export LOCAL_PATH="$PWD/.storage"
'';
disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [
# very flaky, sandbox issues?
# libcloud.storage.types.ContainerDoesNotExistError
# sqlite3.OperationalError: attempt to write a readonly database
"tests/test_content_type_validator.py"
"tests/test_image_field.py"
"tests/test_image_validator.py"
"tests/test_metadata.py"
"tests/test_multiple_field.py"
"tests/test_multiple_storage.py"
"tests/test_processor.py"
"tests/test_single_field.py"
"tests/test_size_validator.py"
"tests/test_sqlmodel.py"
];
pythonImportsCheck = [
"sqlalchemy_file"
"sqlalchemy_file.file"
"sqlalchemy_file.types"
"sqlalchemy_file.helpers"
];
meta = with lib; {
description = "SQLAlchemy extension for attaching files to SQLAlchemy model and uploading them to various storage with Apache Libcloud";
homepage = "https://github.com/jowilf/sqlalchemy-file";
changelog = "https://github.com/jowilf/sqlalchemy-file/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ pbsds ];
};
}