nixpkgs/pkgs/development/python-modules/polling/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

42 lines
705 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
wheel,
mock,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "polling";
version = "0.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "justiniso";
repo = "polling";
rev = "v${version}";
hash = "sha256-Qy2QxCWzAjZMJ6yxZiDT/80I2+rLimoG8/SYxq960Tk=";
};
nativeBuildInputs = [
setuptools
wheel
];
pythonImportsCheck = [ "polling" ];
nativeCheckInputs = [
mock
pytestCheckHook
];
meta = with lib; {
description = "Powerful polling utility in Python";
homepage = "https://github.com/justiniso/polling";
license = licenses.mit;
maintainers = [ ];
};
}