10 buildPythonPackage rec {
15 src = fetchFromGitHub {
18 rev = "refs/tags/${version}";
19 hash = "sha256-w1Q2w/P1bDt/F1+zTkUFi5PxycXXE3p0qadfBcyWElg=";
22 build-system = [ setuptools ];
24 dependencies = [ hy ];
26 nativeCheckInputs = [ pytestCheckHook ];
28 # Some tests depends on hy on PATH
29 preCheck = "PATH=${hy}/bin:$PATH";
31 pythonImportsCheck = [ "hyrule" ];
34 description = "Utility library for the Hy programming language";
35 homepage = "https://github.com/hylang/hyrule";
36 changelog = "https://github.com/hylang/hylure/releases/tag/${version}";
37 license = licenses.mit;
38 maintainers = with maintainers; [ ];