1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "linuxfd";
8 version = "1.4.4";
9
10 name = "${pname}-${version}";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "b8bf6847b5c8e50e0842024d2911bfc1048db9abf37582a310cd57070971d692";
15 };
16
17 # no tests
18 doCheck = false;
19
20 meta = {
21 description = "Python bindings for the Linux eventfd/signalfd/timerfd/inotify syscalls";
22 homepage = https://github.com/FrankAbelbeck/linuxfd;
23 license = with lib.licenses; [ lgpl3 ];
24 };
25}