mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
26 lines
532 B
Nix
26 lines
532 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "linuxfd";
|
|
version = "1.5";
|
|
|
|
|
|
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 ];
|
|
};
|
|
}
|