Skip to content

Commit

Permalink
pythonPackages.sqlalchemy: 1.2.12 -> 1.2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
dtzWill authored and andir committed Nov 16, 2018
1 parent 6f0c65e commit b8229dd
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions pkgs/development/python-modules/sqlalchemy/default.nix
@@ -1,5 +1,6 @@
{ lib
, fetchPypi
, fetchpatch
, buildPythonPackage
, pytest
, mock
Expand All @@ -9,13 +10,23 @@

buildPythonPackage rec {
pname = "SQLAlchemy";
version = "1.2.12";
version = "1.2.13";

src = fetchPypi {
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 = [
pytest
mock
Expand All @@ -32,4 +43,4 @@ buildPythonPackage rec {
description = "A Python SQL toolkit and Object Relational Mapper";
license = licenses.mit;
};
}
}

0 comments on commit b8229dd

Please sign in to comment.