Added netrw~nvim and salt-lint

This commit is contained in:
fleaz 2024-05-15 15:43:06 +02:00
parent 2ed60c215f
commit 54336cf9d4
No known key found for this signature in database
GPG key ID: AED15F8FDD04D083
4 changed files with 26 additions and 13 deletions

View file

@ -1,9 +1,8 @@
{ buildPythonPackage
{ python3Packages
, fetchFromGitHub
, setuptools
, lib
}:
buildPythonPackage rec {
python3Packages.buildPythonPackage rec {
pname = "salt-lint";
version = "0.9.2";
pyproject = true;
@ -16,11 +15,12 @@ buildPythonPackage rec {
};
nativeBuildInputs = [
setuptools
python3Packages.setuptools
];
pythonImportsCheck = [
"saltlint"
propagatedBuildInputs = with python3Packages; [
pathspec
pyyaml
];
meta = with lib; {