Skip to content

Commit 065f9d7

Browse files
caternFRidh
authored andcommittedSep 8, 2017
pythonPackages.linuxfd: init at 1.4.4
(cherry picked from commit 4978b20)
1 parent 399101c commit 065f9d7

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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+
}

‎pkgs/top-level/python-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -4522,6 +4522,8 @@ in {
45224522

45234523
libtmux = callPackage ../development/python-modules/libtmux { };
45244524

4525+
linuxfd = callPackage ../development/python-modules/linuxfd { };
4526+
45254527
locket = buildPythonPackage rec {
45264528
name = "locket-${version}";
45274529
version = "0.2.0";

0 commit comments

Comments
 (0)
Please sign in to comment.