blob: a1e3a703955dde6b5c930116f416c73e8c691e8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
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
];
}
|