python3Packages.aiosqlite: init at 0.11.0

This commit is contained in:
Chris Ostrouchov 2019-12-29 13:07:21 -05:00
parent f1a3393769
commit 5d7fd25770
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, aiounittest
, isPy27
, pytest
}:
buildPythonPackage rec {
pname = "aiosqlite";
version = "0.11.0";
disabled = isPy27;
src = fetchFromGitHub {
owner = "jreese";
repo = pname;
rev = "v${version}";
sha256 = "0pmkp4iy738yv2sl08kvhd0ma6wjqbmfnwid72gvg4zqsr1hnn0z";
};
buildInputs = [
setuptools
];
checkInputs = [
aiounittest
];
meta = with lib; {
description = "Asyncio bridge to the standard sqlite3 module";
homepage = https://github.com/jreese/aiosqlite;
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}

View File

@ -1462,6 +1462,8 @@ in {
aioresponses = callPackage ../development/python-modules/aioresponses { };
aiosqlite = callPackage ../development/python-modules/aiosqlite { };
aiorpcx = callPackage ../development/python-modules/aiorpcx { };
aiosmtpd = callPackage ../development/python-modules/aiosmtpd { };