Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / python-status / default.nix
blobcf3beab789b67bb848aa24c1877dfb94a01412b5
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "python-status";
8   version = "1.0.1";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "0lryrvmi04g7d38ilm4wfw717m0ddhylrzb5cm59lrp3ai3q572f";
14   };
16   # Project doesn't ship tests yet
17   doCheck = false;
19   pythonImportsCheck = [ "status" ];
21   meta = with lib; {
22     description = "HTTP Status for Humans";
23     homepage = "https://github.com/avinassh/status/";
24     license = with licenses; [ mit ];
25     maintainers = with maintainers; [ fab ];
26   };