python311Packages.xknxproject: 3.2.0 -> 3.3.0

Diff: https://github.com/XKNX/xknxproject/compare/refs/tags/3.2.0...3.3.0

Changelog: https://github.com/XKNX/xknxproject/releases/tag/3.3.0
This commit is contained in:
Fabian Affolter 2023-09-22 09:08:46 +02:00
parent dd6c86a81c
commit 3f524dfbe2

View file

@ -2,17 +2,17 @@
, buildPythonPackage , buildPythonPackage
, cryptography , cryptography
, fetchFromGitHub , fetchFromGitHub
, fetchpatch
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, pyzipper , pyzipper
, setuptools , setuptools
, striprtf
, wheel , wheel
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "xknxproject"; pname = "xknxproject";
version = "3.2.0"; version = "3.3.0";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.9"; disabled = pythonOlder "3.9";
@ -21,17 +21,9 @@ buildPythonPackage rec {
owner = "XKNX"; owner = "XKNX";
repo = "xknxproject"; repo = "xknxproject";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-ZLBvhuLXEOgqS7tRwP/e1Dv1/EMqxqXgpAZtLQGIt/o="; hash = "sha256-RH5RQHLpfrI9fRg6OfPZ7/BPHQuHCrkJlwW/EJitdPo=";
}; };
patches = [
(fetchpatch {
name = "unpin-setuptools.patch";
url = "https://github.com/XKNX/xknxproject/commit/53fecaf757d682fda00b04c3a2a1f3da86d9705f.patch";
hash = "sha256-EpfgEq4pIx7ahqJZalzo30ruj8NlZYHcKHxFXCGL98w=";
})
];
nativeBuildInputs = [ nativeBuildInputs = [
setuptools setuptools
wheel wheel
@ -40,6 +32,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
cryptography cryptography
pyzipper pyzipper
striprtf
]; ];
nativeCheckInputs = [ nativeCheckInputs = [