python3Packages.pytile: 5.1.1 -> 5.2.1

Relax aiohttp dependency, the required update is in staging-next.
This commit is contained in:
Martin Weinelt 2021-03-09 03:04:16 +01:00
parent 39447c6549
commit 7218f5d664
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -13,18 +13,22 @@
buildPythonPackage rec {
pname = "pytile";
version = "5.1.1";
version = "5.2.1";
disabled = pythonAtLeast "3.9";
src = fetchFromGitHub {
owner = "bachya";
repo = pname;
rev = version;
sha256 = "sha256-bVoFTaK/Alemtc5I+Z/M9y/FWczvJ+P86R0DMD89/BM=";
sha256 = "0d63xga4gjlfl9fzv3i4j605rrx2qgbzam6cl609ny96s8q8h1px";
};
format = "pyproject";
postPatch = ''
substituteInPlace pyproject.toml --replace 'aiohttp = "^3.7.4"' 'aiohttp = "^3.7.3"'
'';
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [