diff options
| author | Fabian Affolter <mail@fabian-affolter.ch> | 2021-09-22 12:32:51 +0200 |
|---|---|---|
| committer | Fabian Affolter <mail@fabian-affolter.ch> | 2021-09-22 12:32:51 +0200 |
| commit | 7c04423e742f1ebdef67caecfcee1f666c90f7af (patch) | |
| tree | 5314f911c783c5e3927f51cc750ab4d635312591 /pkgs/development/python-modules/python-status | |
| parent | 59ff8e13b5741459ab8006eae567848d2a490047 (diff) | |
python3Packages.python-status: init at 1.0.1
Diffstat (limited to 'pkgs/development/python-modules/python-status')
| -rw-r--r-- | pkgs/development/python-modules/python-status/default.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-status/default.nix b/pkgs/development/python-modules/python-status/default.nix new file mode 100644 index 000000000000..2633d93c312f --- /dev/null +++ b/pkgs/development/python-modules/python-status/default.nix @@ -0,0 +1,26 @@ +{ lib +, buildPythonPackage +, fetchPypi +}: + +buildPythonPackage rec { + pname = "python-status"; + version = "1.0.1"; + + src = fetchPypi { + inherit pname version; + sha256 = "0lryrvmi04g7d38ilm4wfw717m0ddhylrzb5cm59lrp3ai3q572f"; + }; + + # Project doesn't ship tests yet + doCheck = false; + + pythonImportsCheck = [ "status" ]; + + meta = with lib; { + description = "HTTP Status for Humans"; + homepage = "https://github.com/avinassh/status/"; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ fab ]; + }; +} |
