Files
nixpkgs/pkgs/development/python-modules/limnoria/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

69 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
setuptools,
chardet,
cryptography,
feedparser,
fetchPypi,
mock,
pysocks,
pytestCheckHook,
python-dateutil,
python-gnupg,
pythonOlder,
pytz,
}:
buildPythonPackage rec {
pname = "limnoria";
version = "2025.11.2";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-cvlp1cfsdN8lv8hFvaHV6vtWEJ0CJUBmN1yCgxrhMi8=";
};
build-system = [ setuptools ];
dependencies = [
chardet
cryptography
feedparser
mock
pysocks
python-dateutil
python-gnupg
]
++ lib.optionals (pythonOlder "3.9") [ pytz ];
nativeCheckInputs = [ pytestCheckHook ];
postPatch = ''
substituteInPlace setup.py \
--replace-fail "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 = {
description = "Modified version of Supybot, an IRC bot";
homepage = "https://github.com/ProgVal/Limnoria";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}