Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 493 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "linuxfd"; 8 version = "1.4.4"; 9 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "b8bf6847b5c8e50e0842024d2911bfc1048db9abf37582a310cd57070971d692"; 14 }; 15 16 # no tests 17 doCheck = false; 18 19 meta = { 20 description = "Python bindings for the Linux eventfd/signalfd/timerfd/inotify syscalls"; 21 homepage = "https://github.com/FrankAbelbeck/linuxfd"; 22 license = with lib.licenses; [ lgpl3 ]; 23 }; 24}