depot/third_party/nixpkgs/pkgs/development/python-modules/hypchat/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

15 lines
345 B
Nix

{ buildPythonPackage, fetchPypi
, requests, six, python-dateutil }:
buildPythonPackage rec {
pname = "hypchat";
version = "0.21";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1sd8f3gihagaqd848dqy6xw457fa4f9bla1bfyni7fq3h76sjdzg";
};
propagatedBuildInputs = [ requests six python-dateutil ];
}