28 lines
422 B
Nix
28 lines
422 B
Nix
|
{
|
||
|
buildPythonPackage,
|
||
|
pythonAtLeast,
|
||
|
fetchPypi,
|
||
|
requests,
|
||
|
six,
|
||
|
python-dateutil,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "hypchat";
|
||
|
version = "0.21";
|
||
|
format = "setuptools";
|
||
|
|
||
|
disabled = pythonAtLeast "3.12";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "1sd8f3gihagaqd848dqy6xw457fa4f9bla1bfyni7fq3h76sjdzg";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
requests
|
||
|
six
|
||
|
python-dateutil
|
||
|
];
|
||
|
}
|