pythonPackages.consul: Move to own file
This commit is contained in:
committed by
Frederik Rietdijk
parent
bf363467f0
commit
ab557fcd67
24
pkgs/development/python-modules/consul/default.nix
Normal file
24
pkgs/development/python-modules/consul/default.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi
|
||||
, requests, six, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-consul";
|
||||
version = "0.7.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "18gs5myk9wkkq5zvj0n0s68ngj3mrbdcifshxfj1j0bgb1km0wpm";
|
||||
};
|
||||
|
||||
buildInputs = [ requests six pytest ];
|
||||
|
||||
# No tests distributed. https://github.com/cablehead/python-consul/issues/133
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Python client for Consul (https://www.consul.io/)";
|
||||
homepage = https://github.com/cablehead/python-consul;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ desiderius ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user