Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / python-status / default.nix
blob2633d93c312f34bcee307b1d1052f16e6e98e81c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "python-status";
8   version = "1.0.1";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "0lryrvmi04g7d38ilm4wfw717m0ddhylrzb5cm59lrp3ai3q572f";
13   };
15   # Project doesn't ship tests yet
16   doCheck = false;
18   pythonImportsCheck = [ "status" ];
20   meta = with lib; {
21     description = "HTTP Status for Humans";
22     homepage = "https://github.com/avinassh/status/";
23     license = with licenses; [ mit ];
24     maintainers = with maintainers; [ fab ];
25   };