File tree 2 files changed +27
-0
lines changed
development/python-modules/linuxfd
2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ { lib
2
+ , buildPythonPackage
3
+ , fetchPypi
4
+ } :
5
+
6
+ buildPythonPackage 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
+ }
Original file line number Diff line number Diff line change @@ -4522,6 +4522,8 @@ in {
4522
4522
4523
4523
libtmux = callPackage ../development/python-modules/libtmux { };
4524
4524
4525
+ linuxfd = callPackage ../development/python-modules/linuxfd { };
4526
+
4525
4527
locket = buildPythonPackage rec {
4526
4528
name = "locket-${version}";
4527
4529
version = "0.2.0";
You can’t perform that action at this time.
0 commit comments