biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / polling / default.nix
blobbbf858356234bce54d49576580a6e21b6a83dfbf
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   wheel,
7   mock,
8   pytestCheckHook,
9 }:
11 buildPythonPackage rec {
12   pname = "polling";
13   version = "0.3.0";
14   pyproject = true;
16   src = fetchFromGitHub {
17     owner = "justiniso";
18     repo = "polling";
19     rev = "v${version}";
20     hash = "sha256-Qy2QxCWzAjZMJ6yxZiDT/80I2+rLimoG8/SYxq960Tk=";
21   };
23   nativeBuildInputs = [
24     setuptools
25     wheel
26   ];
28   pythonImportsCheck = [ "polling" ];
30   nativeCheckInputs = [
31     mock
32     pytestCheckHook
33   ];
35   meta = with lib; {
36     description = "Powerful polling utility in Python";
37     homepage = "https://github.com/justiniso/polling";
38     license = licenses.mit;
39     maintainers = [ ];
40   };