9 buildPythonPackage rec {
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
19 rev = "refs/tags/${version}";
20 hash = "sha256-MARpQFEypTJ4KpojVRxcHYvo6e6Gvk4B6tnrViV6QmY=";
23 propagatedBuildInputs = [
31 # Some tests depends on hy on PATH
32 preCheck = "PATH=${hy}/bin:$PATH";
34 pythonImportsCheck = [ "hyrule" ];
37 description = "Hyrule is a utility library for the Hy programming language";
38 homepage = "https://github.com/hylang/hyrule";
39 changelog = "https://github.com/hylang/hylure/releases/tag/${version}";
40 license = licenses.mit;
41 maintainers = with maintainers; [ thiagokokada ];