python312Packages.dash-renderer: remove (#369714)
[NixPkgs.git] / pkgs / development / python-modules / s2clientprotocol / default.nix
blob08ce5f72eaaa334d157263e1355bf89bb4eb5a28
2   buildPythonPackage,
3   lib,
4   fetchPypi,
5   protobuf,
6 }:
8 buildPythonPackage rec {
9   pname = "s2clientprotocol";
10   version = "3.19.1.58600.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "02jqwdfj5zpag4c5nf0707qmwk7sqm98yfgrd19rq6pi58zgl74f";
16   };
18   patches = [ ./pure-version.patch ];
20   buildInputs = [ protobuf ];
22   meta = {
23     description = "StarCraft II - client protocol";
24     homepage = "https://github.com/Blizzard/s2client-proto";
25     license = lib.licenses.mit;
26     maintainers = [ ];
27   };