mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
ready-check: init at 1.2.5
Tool to check readiness of websites https://github.com/sesh/ready
This commit is contained in:
parent
4361e1f948
commit
95ae67ded0
40
pkgs/by-name/re/ready-check/package.nix
Normal file
40
pkgs/by-name/re/ready-check/package.nix
Normal file
@ -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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user