python3Packages.python-status: init at 1.0.1

This commit is contained in:
Fabian Affolter 2021-09-22 12:32:51 +02:00
parent 59ff8e13b5
commit 7c04423e74
2 changed files with 28 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -7110,6 +7110,8 @@ in {
pytest-shutil = callPackage ../development/python-modules/pytest-shutil { };
python-status = callPackage ../development/python-modules/python-status { };
python-string-utils = callPackage ../development/python-modules/python-string-utils { };
pytest-socket = callPackage ../development/python-modules/pytest-socket { };