f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
36 lines
880 B
Nix
36 lines
880 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
crossandra,
|
|
dahlia,
|
|
pythonRelaxDepsHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "samarium";
|
|
version = "0.5.3";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "samarium-lang";
|
|
repo = "samarium";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-4WVkTLE6OboNJE/f+6zS3xT1jEHUwV4HSLjl/PBP0FU=";
|
|
};
|
|
|
|
build-system = [ poetry-core pythonRelaxDepsHook ];
|
|
dependencies = [ crossandra dahlia ];
|
|
|
|
patches = [ ./crossandra-2-fix.patch ];
|
|
pythonRelaxDeps = [ "crossandra" ];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/samarium-lang/samarium/blob/${src.rev}/CHANGELOG.md";
|
|
description = "The Samarium Programming Language";
|
|
license = licenses.mit;
|
|
homepage = "https://samarium-lang.github.io/Samarium";
|
|
maintainers = with maintainers; [ sigmanificient ];
|
|
};
|
|
}
|