33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
44 lines
907 B
Nix
44 lines
907 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, hy
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hyrule";
|
|
version = "0.2.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hylang";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "sha256-UvLk5d1lhoXBP2y3YfxVBCoKb3PMHUeNnnbAX6iypiU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
hy
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
# Some tests depends on hy on PATH
|
|
preCheck = "PATH=${hy}/bin:$PATH";
|
|
|
|
pythonImportsCheck = [ "hyrule" ];
|
|
|
|
meta = with lib; {
|
|
description = "Hyrule is a 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 ];
|
|
};
|
|
}
|