Merge pull request #158306 from fabaff/bump-asyncpg
python3Packages.asyncpg: disable on older Python releases
This commit is contained in:
commit
9a77c358fb
1 changed files with 16 additions and 7 deletions
|
@ -1,14 +1,21 @@
|
||||||
{ lib, isPy3k, fetchPypi, buildPythonPackage
|
{ lib
|
||||||
, uvloop, postgresql }:
|
, fetchPypi
|
||||||
|
, buildPythonPackage
|
||||||
|
, uvloop
|
||||||
|
, postgresql
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "asyncpg";
|
pname = "asyncpg";
|
||||||
version = "0.25.0";
|
version = "0.25.0";
|
||||||
disabled = !isPy3k;
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "63f8e6a69733b285497c2855464a34de657f2cccd25aeaeeb5071872e9382540";
|
hash = "sha256-Y/jmppczsoVJfChVRko03mV/LMzSWurutQcYcuk4JUA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
|
@ -16,15 +23,17 @@ buildPythonPackage rec {
|
||||||
postgresql
|
postgresql
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "asyncpg" ];
|
pythonImportsCheck = [
|
||||||
|
"asyncpg"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
description = "Asyncio PosgtreSQL driver";
|
||||||
homepage = "https://github.com/MagicStack/asyncpg";
|
homepage = "https://github.com/MagicStack/asyncpg";
|
||||||
description = "An asyncio PosgtreSQL driver";
|
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Asyncpg is a database interface library designed specifically for
|
Asyncpg is a database interface library designed specifically for
|
||||||
PostgreSQL and Python/asyncio. asyncpg is an efficient, clean
|
PostgreSQL and Python/asyncio. asyncpg is an efficient, clean
|
||||||
implementation of PostgreSQL server binary protocol for use with Python’s
|
implementation of PostgreSQL server binary protocol for use with Python's
|
||||||
asyncio framework.
|
asyncio framework.
|
||||||
'';
|
'';
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
Loading…
Reference in a new issue