mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
26 lines
523 B
Nix
26 lines
523 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|