mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
27 lines
557 B
Nix
27 lines
557 B
Nix
{ 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 ];
|
|
};
|
|
}
|