python3Packages.pyeight: 0.1.9 -> 0.2.0

This commit is contained in:
Fabian Affolter 2022-01-27 11:31:02 +01:00
parent 8fc6055ce7
commit 669236053e

View File

@ -3,19 +3,21 @@
, async-timeout
, buildPythonPackage
, fetchFromGitHub
, isPy3k
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyeight";
version = "0.1.9";
disabled = !isPy3k;
version = "0.2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mezz64";
repo = "pyEight";
rev = version;
sha256 = "1ybhs09wyzzaryghd6ijxhajp3677x63c4qzqsgln1mmxhj8wm5k";
sha256 = "sha256-ERilZWroFaBCYjTfU7W0vegJaGibmJYVcgt0z84TPEI=";
};
propagatedBuildInputs = [
@ -23,9 +25,12 @@ buildPythonPackage rec {
async-timeout
];
# Project has no tests
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "pyeight" ];
pythonImportsCheck = [
"pyeight"
];
meta = with lib; {
description = "Python library to interface with the Eight Sleep API";