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