Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / re / ready-check / package.nix
blob84dcc83454a78de5ea4ef6829dd84a0448b71998
1 { lib
2 , fetchFromGitHub
3 , python3
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "ready-check";
8   version = "1.2.6";
9   pyproject = true;
11   src = fetchFromGitHub {
12     owner = "sesh";
13     repo = "ready";
14     rev = "refs/tags/v${version}";
15     hash = "sha256-j0UY2Q1jYGRtjvaWMwgMJrNaQZQnEJ5ST4o4PAVYWVc=";
16   };
18   nativeBuildInputs = with python3.pkgs; [
19     setuptools
20   ];
22   propagatedBuildInputs = with python3.pkgs; [
23     beautifulsoup4
24     thttp
25     tld
26   ];
28   pythonImportsCheck = [
29     "ready"
30   ];
32   meta = with lib; {
33     description = "Tool to check readiness of websites";
34     homepage = "https://github.com/sesh/ready";
35     changelog = "https://github.com/sesh/ready/releases/tag/v${version}";
36     license = licenses.isc;
37     maintainers = with maintainers; [ fab ];
38     mainProgram = "ready";
39   };