about summary refs log tree commit diff
path: root/pkgs/development/python-modules/linuxfd/default.nix
blob: 793059dbe5406edbc89ee8dfdeea3a974a399466 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  lib,
  buildPythonPackage,
  fetchPypi,
}:

buildPythonPackage rec {
  pname = "linuxfd";
  version = "1.5";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "b8c00109724b68e093f9b556edd78e41ed65fb8d969fd0e83186a97b5d3139b4";
  };

  # no tests
  doCheck = false;

  meta = {
    description = "Python bindings for the Linux eventfd/signalfd/timerfd/inotify syscalls";
    homepage = "https://github.com/FrankAbelbeck/linuxfd";
    platforms = lib.platforms.linux;
    license = with lib.licenses; [ lgpl3Plus ];
  };
}