ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / consul / default.nix
bloba3b92ee725549d84bff5244bea647fb2cdaf25e9
1 { lib, buildPythonPackage, fetchPypi
2 , requests, six, pytest }:
4 buildPythonPackage rec {
5   pname = "python-consul";
6   version = "1.1.0";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "168f1fa53948047effe4f14d53fc1dab50192e2a2cf7855703f126f469ea11f4";
11   };
13   buildInputs = [ requests six pytest ];
15   # No tests distributed. https://github.com/cablehead/python-consul/issues/133
16   doCheck = false;
18   meta = with lib; {
19     description = "Python client for Consul (https://www.consul.io/)";
20     homepage = "https://github.com/cablehead/python-consul";
21     license = licenses.mit;
22     maintainers = with maintainers; [ desiderius ];
23   };