My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/linuxfd/default.nix

25 lines
532 B

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