Merge pull request #135817 from mweinelt/python/databases

python3Packages.databases: 0.4.3 -> 0.5.0

authored by

Fabian Affolter and committed by
GitHub
07e167cb 7e700329

+2 -15
+2 -15
pkgs/development/python-modules/databases/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 - , fetchpatch 5 , sqlalchemy 6 , aiocontextvars 7 , isPy27 ··· 14 15 buildPythonPackage rec { 16 pname = "databases"; 17 - version = "0.4.3"; 18 disabled = isPy27; 19 20 src = fetchFromGitHub { 21 owner = "encode"; 22 repo = pname; 23 rev = version; 24 - sha256 = "0aq88k7d9036cy6qvlfv9p2dxd6p6fic3j0az43gn6k1ardhdsgf"; 25 }; 26 - 27 - patches = [ 28 - # sqlalchemy 1.4 compat, https://github.com/encode/databases/pull/299 29 - (fetchpatch { 30 - url = "https://github.com/encode/databases/commit/9d6e0c024833bd41421f0798a94ef2bbf27a31d5.patch"; 31 - sha256 = "0wz9dz6g88ifvvwlhy249cjvqpx72x99wklzcl7b23srpcvb5gv1"; 32 - }) 33 - (fetchpatch { 34 - url = "https://github.com/encode/databases/commit/40c41c2b7b3fedae484ad94d81b27ce88a09c5ed.patch"; 35 - sha256 = "0z458l3vkg4faxbnf31lszfby5d10fa9kgxxy4xxcm0py6d8a2pi"; 36 - }) 37 - ]; 38 39 propagatedBuildInputs = [ 40 aiocontextvars
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , sqlalchemy 5 , aiocontextvars 6 , isPy27 ··· 13 14 buildPythonPackage rec { 15 pname = "databases"; 16 + version = "0.5.0"; 17 disabled = isPy27; 18 19 src = fetchFromGitHub { 20 owner = "encode"; 21 repo = pname; 22 rev = version; 23 + sha256 = "sha256-HNSPLmZTXZL1e5E9VJiXnQuO2WiXLYOveNTlFqdlTG8="; 24 }; 25 26 propagatedBuildInputs = [ 27 aiocontextvars