Merge pull request #156988 from fabaff/bump-pyeight

python3Packages.pyeight: 0.1.9 -> 0.2.0
This commit is contained in:
Fabian Affolter 2022-01-27 13:22:32 +01:00 committed by GitHub
commit ffce342b55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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";