summary refs log tree commit diff
path: root/pkgs/development/python-modules/hypchat/default.nix
blob: 1f69dfe21062a9d66034e15a0ceaa2838ea31c90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ buildPythonPackage, fetchPypi
, requests, six, python-dateutil }:

buildPythonPackage rec {
  pname = "hypchat";
  version = "0.21";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1sd8f3gihagaqd848dqy6xw457fa4f9bla1bfyni7fq3h76sjdzg";
  };

  propagatedBuildInputs = [ requests six python-dateutil ];
}