13 buildPythonPackage rec {
18 disabled = pythonOlder "3.9";
20 src = fetchFromGitHub {
23 rev = "refs/tags/${version}";
24 hash = "sha256-DWdQUnURL3WBi916vOTawtBqq+SHTu4iLViGczwAWQE=";
28 echo "${version}" > VERSION
31 build-system = [ setuptools ];
39 pytestFlagsArray = [ "--asyncio-mode=auto" ];
41 disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ "test_connection_lost" ];
43 __darwinAllowLocalNetworking = true;
45 pythonImportsCheck = [ "pypck" ];
48 description = "LCN-PCK library written in Python";
49 homepage = "https://github.com/alengwenus/pypck";
50 changelog = "https://github.com/alengwenus/pypck/releases/tag/${version}";
51 license = with licenses; [ epl20 ];
52 maintainers = with maintainers; [ fab ];