about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/limnoria/default.nix
blob: 0afd8902d956871d02168bdb38a8f0d26b751ce0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, git
}:

buildPythonPackage rec {
  pname = "limnoria";
  version = "2021.07.21";
  disabled = isPy27; # abandoned upstream

  src = fetchPypi {
    inherit pname version;
    sha256 = "80ca1db9648e7678f81b373dab04d06025ec6532e68a9be773ddbd159de54e4c";
  };

  postPatch = ''
    sed -i 's/version=version/version="${version}"/' setup.py
  '';
  buildInputs = [ git ];

  # cannot be imported
  doCheck = false;

  meta = with lib; {
    description = "A modified version of Supybot, an IRC bot";
    homepage = "https://github.com/ProgVal/Limnoria";
    license = licenses.bsd3;
    maintainers = with maintainers; [ goibhniu ];
  };

}