Merge pull request #29090 from catern/master

pythonPackages.linuxfd: init at 1.4.4
This commit is contained in:
Frederik Rietdijk 2017-09-08 22:03:08 +02:00 committed by GitHub
commit 8bad0a7f23
2 changed files with 27 additions and 0 deletions

@ -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 ];
};
}

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