Skip to content

Commit

Permalink
pythonPackages.sqlalchemy: apply pytest 5.4 compatibility patch
Browse files Browse the repository at this point in the history
  • Loading branch information
KamilaBorowska committed Apr 6, 2020
1 parent 6a74186 commit acdfaf7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pkgs/development/python-modules/sqlalchemy/default.nix
@@ -1,4 +1,4 @@
{ stdenv, lib, fetchPypi, buildPythonPackage, isPy3k, isPy35
{ stdenv, lib, fetchPypi, fetchpatch, buildPythonPackage, isPy3k, isPy35
, mock
, pysqlite
, pytestCheckHook
Expand All @@ -13,6 +13,13 @@ buildPythonPackage rec {
sha256 = "64a7b71846db6423807e96820993fa12a03b89127d278290ca25c0b11ed7b4fb";
};

patches = [
(fetchpatch {
url = "https://github.com/sqlalchemy/sqlalchemy/commit/993e6449e3f5f3532f6f5426b824718435ce6c6d.patch";
sha256 = "1qacqdrzqlsiinlc2fsrkbh9799j79y9jqh5rjg80gi7ngfy8mw0";
})
];

checkInputs = [
pytestCheckHook
mock
Expand Down

0 comments on commit acdfaf7

Please sign in to comment.