about summary refs log tree commit diff
path: root/pkgs/development/python-modules/s2clientprotocol/default.nix
blob: a4a729ce4280cd71a92a6b3897db4e3aa09bdd31 (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
{
  buildPythonPackage,
  lib,
  fetchPypi,
  protobuf,
}:

buildPythonPackage rec {
  pname = "s2clientprotocol";
  version = "3.19.1.58600.0";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "02jqwdfj5zpag4c5nf0707qmwk7sqm98yfgrd19rq6pi58zgl74f";
  };

  patches = [ ./pure-version.patch ];

  buildInputs = [ protobuf ];

  meta = {
    description = "StarCraft II - client protocol";
    homepage = "https://github.com/Blizzard/s2client-proto";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ ];
  };
}