python3Packages.micloud: 0.4 -> 0.5

This commit is contained in:
Martin Weinelt 2022-01-05 14:25:36 +01:00
parent 41b8b3a7d6
commit d6e86c8183
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -2,23 +2,25 @@
, buildPythonPackage
, fetchFromGitHub
, click
, pycryptodome
, requests
, tzlocal
}:
buildPythonPackage rec {
pname = "micloud";
version = "0.4";
version = "0.5";
src = fetchFromGitHub {
owner = "Squachen";
repo = "micloud";
rev = "v_${version}";
sha256 = "01z1qfln6f7pnxb4ssmyygyamnfgh36fzgn85s8axdwy8wrch20x";
sha256 = "sha256-1qtOsEH+G5ASsRyVCa4U0WQ/9kDRn1WpPNkvuvWFovQ=";
};
propagatedBuildInputs = [
click
pycryptodome
requests
tzlocal
];