Merge pull request #269843 from r-ryantm/auto-update/python311Packages.pycontrol4
python311Packages.pycontrol4: 1.1.0 -> 1.1.2
This commit is contained in:
commit
c9112fadbc
1 changed files with 9 additions and 4 deletions
|
@ -2,6 +2,7 @@
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, setuptools
|
||||||
, aiohttp
|
, aiohttp
|
||||||
, xmltodict
|
, xmltodict
|
||||||
, python-socketio
|
, python-socketio
|
||||||
|
@ -10,17 +11,17 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pycontrol4";
|
pname = "pycontrol4";
|
||||||
version = "1.1.0";
|
version = "1.1.2";
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "lawtancool";
|
owner = "lawtancool";
|
||||||
repo = "pyControl4";
|
repo = "pyControl4";
|
||||||
rev = "v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-dMv2b6dbMauPvPf4LHKmLF4jnXYRYe6A+2lDtiZDUhY=";
|
hash = "sha256-oKKc9s3/fO7cFMjOeKtpvEwmfglxI2lxlN3EIva7zR8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
@ -28,6 +29,10 @@ buildPythonPackage rec {
|
||||||
--replace "python-socketio>=4,<5" "python-socketio>=4"
|
--replace "python-socketio>=4,<5" "python-socketio>=4"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
aiohttp
|
aiohttp
|
||||||
xmltodict
|
xmltodict
|
||||||
|
|
Loading…
Reference in a new issue