nixpkgs/pkgs/development/python-modules/sqlalchemy-imageattach/default.nix
Martin Weinelt 942280d72f python3Packages.sqlalchemy-imageattach: mark as broken
This broke, when the declarative API of SQLAlchemy changed in the 1.4.
release series.

The library seems otherwise unmaintained since 2017.

https://github.com/dahlia/sqlalchemy-imageattach/issues/47
2021-06-22 13:42:52 +02:00

43 lines
981 B
Nix

{ lib
, buildPythonPackage
, pytest
, Wand
, webob
, sqlalchemy
, isPyPy
, pkgs
}:
buildPythonPackage rec {
pname = "SQLAlchemy-ImageAttach";
version = "1.0.0";
src = pkgs.fetchFromGitHub {
repo = "sqlalchemy-imageattach";
owner = "dahlia";
rev = version;
sha256 = "0ba97pn5dh00qvxyjbr0mr3pilxqw5kb3a6jd4wwbsfcv6nngqig";
};
checkInputs = [ pytest Wand.imagemagick webob ];
propagatedBuildInputs = [ sqlalchemy Wand ];
checkPhase = ''
cd tests
export MAGICK_HOME="${pkgs.imagemagick.dev}"
export PYTHONPATH=$PYTHONPATH:../
py.test
cd ..
'';
doCheck = !isPyPy; # failures due to sqla version mismatch
meta = with lib; {
homepage = "https://github.com/dahlia/sqlalchemy-imageattach";
description = "SQLAlchemy extension for attaching images to entity objects";
license = licenses.mit;
broken = true; # Incompatible with sqlalchemy>=1.4 (https://github.com/dahlia/sqlalchemy-imageattach/issues/47)
};
}