evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / python-status / default.nix
blob5a1c14628dadca5402e0e25df900958dc91d91e3
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "python-status";
9   version = "1.0.1";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "0lryrvmi04g7d38ilm4wfw717m0ddhylrzb5cm59lrp3ai3q572f";
15   };
17   # Project doesn't ship tests yet
18   doCheck = false;
20   pythonImportsCheck = [ "status" ];
22   meta = with lib; {
23     description = "HTTP Status for Humans";
24     homepage = "https://github.com/avinassh/status/";
25     license = with licenses; [ mit ];
26     maintainers = with maintainers; [ fab ];
27   };