python3Packages.etebase: 0.31.1 -> 0.31.2

Changelog:
https://github.com/etesync/etebase-py/releases/tag/v0.31.2

(Fixes crashes with Python 3.9.)
This commit is contained in:
Daniël de Kok 2021-03-04 08:48:26 +01:00
parent eab2ba0a67
commit 65671395da

View File

@ -13,19 +13,19 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "etebase"; pname = "etebase";
version = "0.31.1"; version = "0.31.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "etesync"; owner = "etesync";
repo = "etebase-py"; repo = "etebase-py";
rev = "v${version}"; rev = "v${version}";
sha256 = "163iw64l8lwawf84qswcjsq9p8qddv9ysjrr3dzqpqxb2yb0sy39"; hash = "sha256-enGmfXW8eV6FgdHfJqXr1orAsGbxDz9xUY6T706sf5U=";
}; };
cargoDeps = rustPlatform.fetchCargoTarball { cargoDeps = rustPlatform.fetchCargoTarball {
inherit src; inherit src;
name = "${pname}-${version}"; name = "${pname}-${version}";
sha256 = "0w8ypl6kj1mf6ahbdiwbd4jw6ldxdaig47zwk91jjsww5lbyx4lf"; hash = "sha256-4eJvFf6aY+DYkrYgam5Ok9941PX4uQOmtRznEY0+1TE=";
}; };
format = "pyproject"; format = "pyproject";