Loading pkgs/development/python-modules/e3-testsuite/default.nix 0 → 100644 +39 −0 Original line number Diff line number Diff line { buildPythonPackage , e3-core , fetchFromGitHub , lib , setuptools , stdenv }: buildPythonPackage rec { pname = "e3-testsuite"; version = "26.0"; pyproject = true; src = fetchFromGitHub { owner = "AdaCore"; repo = "e3-testsuite"; rev = "v${version}"; hash = "sha256-V20tX0zi2DRHO42udUcW/CDMyBxh1uSTgac0zZGubsI="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ e3-core ]; pythonImportsCheck = [ "e3" ]; meta = with lib; { changelog = "https://github.com/AdaCore/e3-testsuite/releases/tag/${src.rev}"; homepage = "https://github.com/AdaCore/e3-testsuite/"; description = "Generic testsuite framework in Python"; license = licenses.gpl3Only; maintainers = with maintainers; [ heijligen ]; platforms = platforms.linux; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -3554,6 +3554,8 @@ self: super: with self; { e3-core = callPackage ../development/python-modules/e3-core { }; e3-testsuite = callPackage ../development/python-modules/e3-testsuite { }; eagle100 = callPackage ../development/python-modules/eagle100 { }; easydict = callPackage ../development/python-modules/easydict { }; Loading Loading
pkgs/development/python-modules/e3-testsuite/default.nix 0 → 100644 +39 −0 Original line number Diff line number Diff line { buildPythonPackage , e3-core , fetchFromGitHub , lib , setuptools , stdenv }: buildPythonPackage rec { pname = "e3-testsuite"; version = "26.0"; pyproject = true; src = fetchFromGitHub { owner = "AdaCore"; repo = "e3-testsuite"; rev = "v${version}"; hash = "sha256-V20tX0zi2DRHO42udUcW/CDMyBxh1uSTgac0zZGubsI="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ e3-core ]; pythonImportsCheck = [ "e3" ]; meta = with lib; { changelog = "https://github.com/AdaCore/e3-testsuite/releases/tag/${src.rev}"; homepage = "https://github.com/AdaCore/e3-testsuite/"; description = "Generic testsuite framework in Python"; license = licenses.gpl3Only; maintainers = with maintainers; [ heijligen ]; platforms = platforms.linux; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -3554,6 +3554,8 @@ self: super: with self; { e3-core = callPackage ../development/python-modules/e3-core { }; e3-testsuite = callPackage ../development/python-modules/e3-testsuite { }; eagle100 = callPackage ../development/python-modules/eagle100 { }; easydict = callPackage ../development/python-modules/easydict { }; Loading