about summary refs log tree commit diff
path: root/pkgs/by-name/re
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-03-02 15:59:07 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2024-03-02 15:59:07 +0100
commit95ae67ded0b6adc3bc20946ca4d2bf7e24bf7c38 (patch)
treef13a16c290fc986c8d887397444a5b7f9bd4bb46 /pkgs/by-name/re
parent4361e1f948bb1df4ca951ce8912d4e61437fb5ee (diff)
ready-check: init at 1.2.5
Tool to check readiness of websites

https://github.com/sesh/ready
Diffstat (limited to 'pkgs/by-name/re')
-rw-r--r--pkgs/by-name/re/ready-check/package.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/pkgs/by-name/re/ready-check/package.nix b/pkgs/by-name/re/ready-check/package.nix
new file mode 100644
index 0000000000000..410c4c188a40f
--- /dev/null
+++ b/pkgs/by-name/re/ready-check/package.nix
@@ -0,0 +1,40 @@
+{ lib
+, fetchFromGitHub
+, python3
+}:
+
+python3.pkgs.buildPythonApplication rec {
+  pname = "ready-check";
+  version = "1.2.5";
+  pyproject = true;
+
+  src = fetchFromGitHub {
+    owner = "sesh";
+    repo = "ready";
+    rev = "refs/tags/v${version}";
+    hash = "sha256-eerYxpn1f+d1PQJCDlH9kD1KKlkL/dQFUpbSRcNoXlI=";
+  };
+
+  nativeBuildInputs = with python3.pkgs; [
+    setuptools
+  ];
+
+  propagatedBuildInputs = with python3.pkgs; [
+    beautifulsoup4
+    thttp
+    tld
+  ];
+
+  pythonImportsCheck = [
+    "ready"
+  ];
+
+  meta = with lib; {
+    description = "Tool to check readiness of websites";
+    homepage = "https://github.com/sesh/ready";
+    changelog = "https://github.com/sesh/ready/releases/tag/v${version}";
+    license = licenses.isc;
+    maintainers = with maintainers; [ fab ];
+    mainProgram = "ready";
+  };
+}