pythonPackages.SQLAlchemy-ImageAttach: 0.8.2 -> 1.0.0

- package update
- use upstream name as attribute name
This commit is contained in:
Frederik Rietdijk 2017-05-01 11:21:24 +02:00
parent 464b5aa6fb
commit db41aa6a94

View File

@ -24818,20 +24818,20 @@ in {
}; };
}; };
sqlalchemy_imageattach = buildPythonPackage rec { SQLAlchemy-ImageAttach = buildPythonPackage rec {
name = "SQLAlchemy-ImageAttach-${version}"; pname = "SQLAlchemy-ImageAttach";
version = "0.8.2"; version = "1.0.0";
disabled = isPy33; name = "${pname}-${version}";
src = pkgs.fetchFromGitHub { src = pkgs.fetchFromGitHub {
repo = "sqlalchemy-imageattach"; repo = "sqlalchemy-imageattach";
owner = "crosspop"; owner = "dahlia";
rev = "${version}"; rev = "${version}";
sha256 = "1pqf7vk4lsvnhw169cqfyk0iz5f8n45470mdslklpi38z2fax9p0"; sha256 = "0ba97pn5dh00qvxyjbr0mr3pilxqw5kb3a6jd4wwbsfcv6nngqig";
}; };
buildInputs = with self; [ pytest webob pkgs.imagemagick nose ]; checkInputs = with self; [ pytest Wand.imagemagick webob ];
propagatedBuildInputs = with self; [ sqlalchemy8 Wand ]; propagatedBuildInputs = with self; [ sqlalchemy Wand ];
checkPhase = '' checkPhase = ''
cd tests cd tests
@ -24843,7 +24843,7 @@ in {
doCheck = !isPyPy; # failures due to sqla version mismatch doCheck = !isPyPy; # failures due to sqla version mismatch
meta = { meta = {
homepage = https://github.com/crosspop/sqlalchemy-imageattach; homepage = https://github.com/dahlia/sqlalchemy-imageattach;
description = "SQLAlchemy extension for attaching images to entity objects"; description = "SQLAlchemy extension for attaching images to entity objects";
license = licenses.mit; license = licenses.mit;
}; };