mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
176 lines
4.2 KiB
Nix
176 lines
4.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
python,
|
|
fetchFromGitHub,
|
|
arpeggio,
|
|
click,
|
|
callPackage,
|
|
flit-core,
|
|
}:
|
|
|
|
let
|
|
textx = buildPythonPackage rec {
|
|
pname = "textx";
|
|
version = "4.0.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-qiKOG6B7yWWzkL7bmcRAVv6AOHKTWmrlrsJlXD5RoaQ=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"testout"
|
|
];
|
|
|
|
build-system = [ flit-core ];
|
|
|
|
dependencies = [ arpeggio ];
|
|
|
|
postInstall = ''
|
|
# FileNotFoundError: [Errno 2] No such file or directory: '$out/lib/python3.10/site-packages/textx/textx.tx
|
|
cp "$src/textx/textx.tx" "$out/${python.sitePackages}/${pname}/"
|
|
|
|
# Install tests as the tests output.
|
|
mkdir $testout
|
|
cp -r tests $testout/tests
|
|
'';
|
|
|
|
pythonImportsCheck = [ "textx" ];
|
|
|
|
# Circular dependencies, do tests in passthru.tests instead.
|
|
doCheck = false;
|
|
|
|
passthru.tests = {
|
|
textxTests = callPackage ./tests.nix {
|
|
inherit
|
|
textx-data-dsl
|
|
textx-example-project
|
|
textx-flow-codegen
|
|
textx-flow-dsl
|
|
textx-types-dsl
|
|
;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Domain-specific languages and parsers in Python";
|
|
mainProgram = "textx";
|
|
homepage = "https://github.com/textx/textx/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ yuu ];
|
|
};
|
|
};
|
|
|
|
textx-data-dsl = buildPythonPackage rec {
|
|
pname = "textx-data-dsl";
|
|
version = "1.0.0";
|
|
pyproject = true;
|
|
|
|
inherit (textx) src;
|
|
pathToSourceRoot = "tests/functional/registration/projects/data_dsl";
|
|
sourceRoot = "${src.name}/" + pathToSourceRoot;
|
|
|
|
build-system = [ flit-core ];
|
|
|
|
dependencies = [
|
|
textx
|
|
textx-types-dsl
|
|
];
|
|
|
|
meta = with lib; {
|
|
inherit (textx.meta) license maintainers;
|
|
description = "Sample textX language for testing";
|
|
homepage = textx.homepage + "tree/${version}/" + pathToSourceRoot;
|
|
};
|
|
};
|
|
|
|
textx-flow-codegen = buildPythonPackage rec {
|
|
pname = "textx-flow-codegen";
|
|
version = "1.0.0";
|
|
pyproject = true;
|
|
|
|
inherit (textx) src;
|
|
|
|
pathToSourceRoot = "tests/functional/registration/projects/flow_codegen";
|
|
sourceRoot = "${src.name}/" + pathToSourceRoot;
|
|
|
|
build-system = [ flit-core ];
|
|
dependencies = [
|
|
textx
|
|
click
|
|
];
|
|
|
|
meta = with lib; {
|
|
inherit (textx.meta) license maintainers;
|
|
description = "Sample textX language for testing";
|
|
homepage = textx.homepage + "tree/${version}/" + pathToSourceRoot;
|
|
};
|
|
};
|
|
|
|
textx-flow-dsl = buildPythonPackage rec {
|
|
pname = "textx-flow-dsl";
|
|
version = "1.0.0";
|
|
pyproject = true;
|
|
|
|
inherit (textx) src;
|
|
|
|
pathToSourceRoot = "tests/functional/registration/projects/flow_dsl";
|
|
sourceRoot = "${src.name}/" + pathToSourceRoot;
|
|
|
|
build-system = [ flit-core ];
|
|
dependencies = [ textx ];
|
|
|
|
meta = with lib; {
|
|
inherit (textx.meta) license maintainers;
|
|
description = "Sample textX language for testing";
|
|
homepage = textx.homepage + "tree/${version}/" + pathToSourceRoot;
|
|
};
|
|
};
|
|
|
|
textx-types-dsl = buildPythonPackage rec {
|
|
pname = "textx-types-dsl";
|
|
version = "1.0.0";
|
|
pyproject = true;
|
|
|
|
inherit (textx) src;
|
|
|
|
pathToSourceRoot = "tests/functional/registration/projects/types_dsl";
|
|
sourceRoot = "${src.name}/" + pathToSourceRoot;
|
|
|
|
build-system = [ flit-core ];
|
|
dependencies = [ textx ];
|
|
|
|
meta = with lib; {
|
|
inherit (textx.meta) license maintainers;
|
|
description = "Sample textX language for testing";
|
|
homepage = textx.homepage + "tree/${version}/" + pathToSourceRoot;
|
|
};
|
|
};
|
|
|
|
textx-example-project = buildPythonPackage rec {
|
|
pname = "textx-example-project";
|
|
version = "1.0.0";
|
|
pyproject = true;
|
|
|
|
inherit (textx) src;
|
|
|
|
pathToSourceRoot = "tests/functional/subcommands/example_project";
|
|
sourceRoot = "${src.name}/" + pathToSourceRoot;
|
|
|
|
build-system = [ flit-core ];
|
|
dependencies = [ textx ];
|
|
|
|
meta = with lib; {
|
|
inherit (textx.meta) license maintainers;
|
|
description = "Sample textX sub-command for testing";
|
|
homepage = textx.homepage + "tree/${version}/" + pathToSourceRoot;
|
|
};
|
|
};
|
|
in
|
|
textx
|