summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-status/default.nix
blob: 2633d93c312f34bcee307b1d1052f16e6e98e81c (plain) (blame)
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
{ 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 ];
  };
}