1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, pkgs
5}:
6
7buildPythonPackage rec {
8 pname = "limnoria";
9 version = "2018.12.19";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "6034e324b3a455f042975006a35dd33fa9175115c7302cb53ca9a646f6594bfc";
14 };
15
16 patchPhase = ''
17 sed -i 's/version=version/version="${version}"/' setup.py
18 '';
19 buildInputs = [ pkgs.git ];
20
21 doCheck = false;
22
23 meta = with stdenv.lib; {
24 description = "A modified version of Supybot, an IRC bot";
25 homepage = http://supybot.fr.cr;
26 license = licenses.bsd3;
27 maintainers = with maintainers; [ goibhniu ];
28 };
29
30}