mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
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.
45 lines
948 B
Nix
45 lines
948 B
Nix
{ lib, python3, fetchFromGitHub }:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "pls";
|
|
version = "5.4.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dhruvkb";
|
|
repo = "pls";
|
|
rev = version;
|
|
sha256 = "sha256-h93Kz+ETdHfnzypa8JjMvbzA1o/KS1UuTG8/vhEt7Vo=";
|
|
};
|
|
|
|
nativeBuildInputs = [ python3.pkgs.poetry-core ];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
pyyaml
|
|
requests
|
|
rich
|
|
];
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
freezegun
|
|
jsonschema
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace 'rich = "^12.5.1"' 'rich = "*"' \
|
|
'';
|
|
|
|
pytestFlagsArray = [ "tests/" "--ignore=tests/e2e" ];
|
|
|
|
pythonImportsCheck = [ "pls" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://dhruvkb.github.io/pls/";
|
|
description = "Prettier and powerful ls";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ arjan-s ];
|
|
};
|
|
}
|