Merge pull request #163779 from r-ryantm/auto-update/python3.10-python-juicenet
python310Packages.python-juicenet: 1.0.2 -> 1.1.0
This commit is contained in:
commit
02177737c5
1 changed files with 10 additions and 4 deletions
|
@ -1,18 +1,22 @@
|
|||
{ lib
|
||||
, aiohttp
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, aiohttp
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-juicenet";
|
||||
version = "1.0.2";
|
||||
version = "1.1.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jesserockz";
|
||||
repo = "python-juicenet";
|
||||
rev = "v${version}";
|
||||
sha256 = "04547pj51ds31yhyc7ng47v9giz16h2s3wgb6szc8ivhb5rclqz2";
|
||||
hash = "sha256-5RKnVwOfEHzFZCiC8OUpS8exKrENK+I3Ok45HlKEvtU=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -22,7 +26,9 @@ buildPythonPackage rec {
|
|||
# no tests implemented
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "pyjuicenet" ];
|
||||
pythonImportsCheck = [
|
||||
"pyjuicenet"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Read and control Juicenet/Juicepoint/Juicebox based EVSE devices";
|
||||
|
|
Loading…
Reference in a new issue