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