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
|
{ lib
|
||||||
|
, aiohttp
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, aiohttp
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "python-juicenet";
|
pname = "python-juicenet";
|
||||||
version = "1.0.2";
|
version = "1.1.0";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "jesserockz";
|
owner = "jesserockz";
|
||||||
repo = "python-juicenet";
|
repo = "python-juicenet";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "04547pj51ds31yhyc7ng47v9giz16h2s3wgb6szc8ivhb5rclqz2";
|
hash = "sha256-5RKnVwOfEHzFZCiC8OUpS8exKrENK+I3Ok45HlKEvtU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -22,7 +26,9 @@ buildPythonPackage rec {
|
||||||
# no tests implemented
|
# no tests implemented
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
pythonImportsCheck = [ "pyjuicenet" ];
|
pythonImportsCheck = [
|
||||||
|
"pyjuicenet"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Read and control Juicenet/Juicepoint/Juicebox based EVSE devices";
|
description = "Read and control Juicenet/Juicepoint/Juicebox based EVSE devices";
|
||||||
|
|
Loading…
Reference in a new issue