1{ lib, buildPythonPackage, fetchPypi 2, requests, six, pytest }: 3 4buildPythonPackage rec { 5 pname = "python-consul"; 6 version = "1.1.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "168f1fa53948047effe4f14d53fc1dab50192e2a2cf7855703f126f469ea11f4"; 11 }; 12 13 buildInputs = [ requests six pytest ]; 14 15 # No tests distributed. https://github.com/cablehead/python-consul/issues/133 16 doCheck = false; 17 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 }; 24}