mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +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.
50 lines
981 B
Nix
50 lines
981 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "beautysh";
|
|
version = "6.2.1";
|
|
format = "pyproject";
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lovesegfault";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-rPeGRcyNK45Y7OvtzaIH93IIzexBf/jM1SzYP0phQ1o=";
|
|
};
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
colorama
|
|
setuptools
|
|
types-colorama
|
|
types-setuptools
|
|
];
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace 'types-setuptools = "^57.4.0"' 'types-setuptools = "*"'
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"beautysh"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Tool for beautifying Bash scripts";
|
|
homepage = "https://github.com/lovesegfault/beautysh";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|