legendary-gl: 0.20.32 -> 0.20.33

This commit is contained in:
Aidan Gauland 2023-07-31 14:45:35 +12:00
parent 893ae858d5
commit 5a29bee734
No known key found for this signature in database
GPG key ID: 16E68DD2D0E77C91

View file

@ -4,20 +4,24 @@
, buildPythonApplication
, pythonOlder
, requests
, filelock
}:
buildPythonApplication rec {
pname = "legendary-gl"; # Name in pypi
version = "0.20.32";
version = "0.20.33";
src = fetchFromGitHub {
owner = "derrod";
repo = "legendary";
rev = "refs/tags/${version}";
sha256 = "sha256-MsvhVS3lqhgBJ+S/cjXFP70I3rM5WBYT7TyVlRWhNWw=";
sha256 = "sha256-fEQUChkxrKV2IkFGORUolZE2qTzA10Xxogjl5Va4TcE=";
};
propagatedBuildInputs = [ requests ];
propagatedBuildInputs = [
requests
filelock
];
disabled = pythonOlder "3.8";