Skip to content

Commit

Permalink
pythonPackages.linuxfd: init at 1.4.4
Browse files Browse the repository at this point in the history
(cherry picked from commit 4978b20)
  • Loading branch information
catern authored and FRidh committed Sep 8, 2017
1 parent 399101c commit 065f9d7
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/development/python-modules/linuxfd/default.nix
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -4522,6 +4522,8 @@ in {

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

linuxfd = callPackage ../development/python-modules/linuxfd { };

locket = buildPythonPackage rec {
name = "locket-${version}";
version = "0.2.0";
Expand Down

0 comments on commit 065f9d7

Please sign in to comment.