mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
python3Package.aionotify: init at 0.2.0
This commit is contained in:
parent
1063be86e9
commit
9a43f55bb0
32
pkgs/development/python-modules/aionotify/default.nix
Normal file
32
pkgs/development/python-modules/aionotify/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user