blob: 5a1c14628dadca5402e0e25df900958dc91d91e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "python-status";
version = "1.0.1";
format = "setuptools";
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 ];
};
}
|