depot/third_party/nixpkgs/pkgs/development/python-modules/limnoria/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

64 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
chardet,
cryptography,
feedparser,
fetchPypi,
mock,
pysocks,
pytestCheckHook,
python-dateutil,
python-gnupg,
pythonOlder,
pytz,
}:
buildPythonPackage rec {
pname = "limnoria";
version = "2024.4.26";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-H8GAJvmkYJy8PJsXn4Yl9qY3zb9aFBa7sr4DN0bKYfQ=";
};
propagatedBuildInputs = [
chardet
cryptography
feedparser
mock
pysocks
python-dateutil
python-gnupg
] ++ lib.optionals (pythonOlder "3.9") [ pytz ];
nativeCheckInputs = [ pytestCheckHook ];
postPatch = ''
substituteInPlace setup.py \
--replace "version=version" 'version="${version}"'
'';
checkPhase = ''
runHook preCheck
export PATH="$PATH:$out/bin";
supybot-test test -v --no-network
runHook postCheck
'';
pythonImportsCheck = [
# Uses the same names as Supybot
"supybot"
];
meta = with lib; {
description = "Modified version of Supybot, an IRC bot";
homepage = "https://github.com/ProgVal/Limnoria";
license = licenses.bsd3;
maintainers = with maintainers; [ goibhniu ];
};
}