mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
2cf9fd0add
This package has syntax errors preventing test from running on Python 3.12.
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
|
|
];
|
|
}
|