linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / aionotify / default.nix
blob93177733dedc67712579d313d7fa832636c71348
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , asynctest
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "aionotify";
10   version = "0.2.0";
12   src = fetchFromGitHub {
13     owner = "rbarrois";
14     repo = "aionotify";
15     rev = "v${version}";
16     sha256 = "1sk9i8czxgsbrswsf1nlb4c82vgnlzi8zrvrxdip92w2z8hqh43y";
17   };
19   disabled = pythonOlder "3.5";
21   checkInputs = [
22     asynctest
23   ];
25   meta = with lib; {
26     homepage = "https://github.com/rbarrois/aionotify";
27     description = "Simple, asyncio-based inotify library for Python";
28     license = with lib.licenses; [ bsd2 ];
29     platforms = platforms.linux;
30     maintainers = with lib.maintainers; [ thiagokokada ];
31   };