python3Package.aionotify: init at 0.2.0

This commit is contained in:
Thiago Kenji Okada 2020-09-21 13:00:13 -03:00 committed by Jon
parent 1063be86e9
commit 9a43f55bb0
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, asynctest
, pythonOlder
}:
buildPythonPackage rec {
pname = "aionotify";
version = "0.2.0";
src = fetchFromGitHub {
owner = "rbarrois";
repo = "aionotify";
rev = "v${version}";
sha256 = "1sk9i8czxgsbrswsf1nlb4c82vgnlzi8zrvrxdip92w2z8hqh43y";
};
disabled = pythonOlder "3.5";
checkInputs = [
asynctest
];
meta = with lib; {
homepage = "https://github.com/rbarrois/aionotify";
description = "Simple, asyncio-based inotify library for Python";
license = with lib.licenses; [ bsd2 ];
platforms = platforms.linux;
maintainers = with lib.maintainers; [ thiagokokada ];
};
}

View file

@ -228,6 +228,8 @@ in {
aiomysql = callPackage ../development/python-modules/aiomysql { };
aionotify = callPackage ../development/python-modules/aionotify { };
aioprocessing = callPackage ../development/python-modules/aioprocessing { };
aioredis = callPackage ../development/python-modules/aioredis { };