python3Packages.python-status: init at 1.0.1
This commit is contained in:
parent
59ff8e13b5
commit
7c04423e74
2 changed files with 28 additions and 0 deletions
26
pkgs/development/python-modules/python-status/default.nix
Normal file
26
pkgs/development/python-modules/python-status/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -7110,6 +7110,8 @@ in {
|
||||||
|
|
||||||
pytest-shutil = callPackage ../development/python-modules/pytest-shutil { };
|
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 { };
|
python-string-utils = callPackage ../development/python-modules/python-string-utils { };
|
||||||
|
|
||||||
pytest-socket = callPackage ../development/python-modules/pytest-socket { };
|
pytest-socket = callPackage ../development/python-modules/pytest-socket { };
|
||||||
|
|
Loading…
Reference in a new issue