pythonPackages.linuxfd: init at 1.4.4

This commit is contained in:
Spencer Baugh 2017-09-07 19:26:18 +00:00
parent f66ed3079d
commit 4978b204e3
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "linuxfd";
version = "1.4.4";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "b8bf6847b5c8e50e0842024d2911bfc1048db9abf37582a310cd57070971d692";
};
# no tests
doCheck = false;
meta = {
description = "Python bindings for the Linux eventfd/signalfd/timerfd/inotify syscalls";
homepage = https://github.com/FrankAbelbeck/linuxfd;
license = with lib.licenses; [ lgpl3 ];
};
}

View File

@ -4529,6 +4529,8 @@ in {
libtmux = callPackage ../development/python-modules/libtmux { };
linuxfd = callPackage ../development/python-modules/linuxfd { };
locket = buildPythonPackage rec {
name = "locket-${version}";
version = "0.2.0";