depot/third_party/nixpkgs/pkgs/development/python-modules/limnoria/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

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.5.30";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-uKJMeC1dXhQp1CGbtdnqmELFO64VWblhABGfpKHGCZQ=";
};
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 = [ ];
};
}