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