1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, pkgs
5}:
6
7buildPythonPackage rec {
8 pname = "limnoria";
9 version = "2019.11.22";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "6ccc6906fd644444a1edd0984d10bddf5abf4dd91c94eeeaa4660f7dc3eca320";
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 = "https://github.com/ProgVal/Limnoria";
26 license = licenses.bsd3;
27 maintainers = with maintainers; [ goibhniu ];
28 };
29
30}