Loading pkgs/development/python-modules/aiohomematic-test-support/default.nix 0 → 100644 +28 −0 Original line number Diff line number Diff line { aiohomematic, buildPythonPackage, setuptools, }: buildPythonPackage rec { pname = "aiohomematic-test-support"; inherit (aiohomematic) version src; pyproject = true; postPatch = '' substituteInPlace pyproject.toml \ --replace-fail 'dynamic = ["version"]' 'version = "${version}"' ''; sourceRoot = "${src.name}/aiohomematic_test_support"; build-system = [ setuptools ]; pythonImportsCheck = [ "aiohomematic_test_support" ]; meta = { description = "Support-only package for AioHomematic (tests/dev)"; homepage = "https://github.com/SukramJ/aiohomematic/tree/devel/aiohomematic_test_support"; inherit (aiohomematic.meta) license maintainers; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -296,6 +296,8 @@ self: super: with self; { aiohomematic = callPackage ../development/python-modules/aiohomematic { }; aiohomematic-test-support = callPackage ../development/python-modules/aiohomematic-test-support { }; aiohttp = callPackage ../development/python-modules/aiohttp { }; aiohttp-apispec = callPackage ../development/python-modules/aiohttp-apispec { }; Loading Loading
pkgs/development/python-modules/aiohomematic-test-support/default.nix 0 → 100644 +28 −0 Original line number Diff line number Diff line { aiohomematic, buildPythonPackage, setuptools, }: buildPythonPackage rec { pname = "aiohomematic-test-support"; inherit (aiohomematic) version src; pyproject = true; postPatch = '' substituteInPlace pyproject.toml \ --replace-fail 'dynamic = ["version"]' 'version = "${version}"' ''; sourceRoot = "${src.name}/aiohomematic_test_support"; build-system = [ setuptools ]; pythonImportsCheck = [ "aiohomematic_test_support" ]; meta = { description = "Support-only package for AioHomematic (tests/dev)"; homepage = "https://github.com/SukramJ/aiohomematic/tree/devel/aiohomematic_test_support"; inherit (aiohomematic.meta) license maintainers; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -296,6 +296,8 @@ self: super: with self; { aiohomematic = callPackage ../development/python-modules/aiohomematic { }; aiohomematic-test-support = callPackage ../development/python-modules/aiohomematic-test-support { }; aiohttp = callPackage ../development/python-modules/aiohttp { }; aiohttp-apispec = callPackage ../development/python-modules/aiohttp-apispec { }; Loading