fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
43 lines
935 B
Nix
43 lines
935 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
hy,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hyrule";
|
|
version = "0.6.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hylang";
|
|
repo = "hyrule";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-pmJhhOpNxVEUH8YwBUKSywYgYu43oLSmpWJM4HXGMiI=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [ hy ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
# Some tests depends on hy on PATH
|
|
preCheck = "PATH=${hy}/bin:$PATH";
|
|
|
|
pythonImportsCheck = [ "hyrule" ];
|
|
|
|
meta = with lib; {
|
|
description = "Utility library for the Hy programming language";
|
|
homepage = "https://github.com/hylang/hyrule";
|
|
changelog = "https://github.com/hylang/hylure/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ thiagokokada ];
|
|
};
|
|
}
|