pythonPackages.sqlalchemy: 1.2.12 -> 1.2.13

This commit is contained in:
Will Dietz 2018-11-05 23:19:19 -06:00 committed by Andreas Rammhold
parent 6f0c65ee3f
commit b8229dd2dc
No known key found for this signature in database
GPG Key ID: E432E410B5E48C86

View File

@ -1,5 +1,6 @@
{ lib { lib
, fetchPypi , fetchPypi
, fetchpatch
, buildPythonPackage , buildPythonPackage
, pytest , pytest
, mock , mock
@ -9,13 +10,23 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "SQLAlchemy"; pname = "SQLAlchemy";
version = "1.2.12"; version = "1.2.13";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "c5951d9ef1d5404ed04bae5a16b60a0779087378928f997a294d1229c6ca4d3e"; sha256 = "84412de3794acee05630e7788f25e80e81f78eb4837e7b71d0499129f660486a";
}; };
patches = [
# fix for failing doc tests
# https://bitbucket.org/zzzeek/sqlalchemy/issues/4370/sqlite-325x-docs-tutorialrst-doctests-fail
(fetchpatch {
name = "doc-test-fixes.patch";
url = https://bitbucket.org/zzzeek/sqlalchemy/commits/63279a69e2b9277df5e97ace161fa3a1bb4f29cd/raw;
sha256 = "1x25aj5hqmgjdak4hllya0rf0srr937k1hwaxb24i9ban607hjri";
})
];
checkInputs = [ checkInputs = [
pytest pytest
mock mock
@ -32,4 +43,4 @@ buildPythonPackage rec {
description = "A Python SQL toolkit and Object Relational Mapper"; description = "A Python SQL toolkit and Object Relational Mapper";
license = licenses.mit; license = licenses.mit;
}; };
} }