1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "python-simple-hipchat";
5 version = "0.4.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0zy6prrj85jjc4xmxgfg8h94j81k6zhfxfffcbvq9b10jis1rgav";
10 };
11
12 meta = with lib; {
13 description = "Easy peasy wrapper for HipChat's v1 API";
14 homepage = "https://github.com/kurttheviking/simple-hipchat-py";
15 license = licenses.mit;
16 };
17}