My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/aionotify/default.nix

37 lines
832 B

{ 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";
preCheck = ''
substituteInPlace tests/test_usage.py \
--replace "asyncio.wait_for(task, timeout, loop=self.loop)" "asyncio.wait_for(task, timeout)"
'';
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; [ ];
};
}