linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / python-simple-hipchat / default.nix
blob904437bdcf666ee6080b4a9c8844bd58714b1f48
1 { lib, buildPythonPackage, fetchPypi
2 , unzip }:
4 buildPythonPackage rec {
5   pname = "python-simple-hipchat";
6   version = "0.4.0";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "0zy6prrj85jjc4xmxgfg8h94j81k6zhfxfffcbvq9b10jis1rgav";
11   };
13   nativeBuildInputs = [ unzip ];
15   meta = with 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   };