mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
40 lines
717 B
Nix
40 lines
717 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, click
|
|
, pycryptodome
|
|
, requests
|
|
, tzlocal
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "micloud";
|
|
version = "0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Squachen";
|
|
repo = "micloud";
|
|
rev = "v_${version}";
|
|
sha256 = "sha256-1qtOsEH+G5ASsRyVCa4U0WQ/9kDRn1WpPNkvuvWFovQ=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
click
|
|
pycryptodome
|
|
requests
|
|
tzlocal
|
|
];
|
|
|
|
# tests require credentials
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "micloud" ];
|
|
|
|
meta = with lib; {
|
|
description = "Xiaomi cloud connect library";
|
|
homepage = "https://github.com/Squachen/micloud";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|