Merge pull request #302299 from fabaff/xknxproject-bump
python312Packages.xknxproject: refactor
This commit is contained in:
commit
58cbc7d052
@ -1,13 +1,13 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, cryptography
|
||||
, fetchFromGitHub
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, pyzipper
|
||||
, setuptools
|
||||
, striprtf
|
||||
, wheel
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
cryptography,
|
||||
fetchFromGitHub,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
pyzipper,
|
||||
setuptools,
|
||||
striprtf,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -24,27 +24,20 @@ buildPythonPackage rec {
|
||||
hash = "sha256-/Zg4MYOvbsbJ0zyKuq+gX0PNbm8TyyBMziIaGCq6Lt8=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
wheel
|
||||
];
|
||||
build-system = [ setuptools ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dependencies = [
|
||||
cryptography
|
||||
pyzipper
|
||||
striprtf
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"xknxproject"
|
||||
];
|
||||
pythonImportsCheck = [ "xknxproject" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "ETS project parser";
|
||||
description = "Library to extract KNX projects and parses the underlying XML";
|
||||
homepage = "https://github.com/XKNX/xknxproject";
|
||||
changelog = "https://github.com/XKNX/xknxproject/releases/tag/${version}";
|
||||
license = licenses.gpl2Only;
|
||||
|
Loading…
Reference in New Issue
Block a user