567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
51 lines
955 B
Nix
51 lines
955 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
colorama,
|
|
mock,
|
|
pyyaml,
|
|
pydantic,
|
|
backoff,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nuclear";
|
|
version = "2.6.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "igrek51";
|
|
repo = "nuclear";
|
|
rev = version;
|
|
hash = "sha256-63BYwfLWUDN18AOAUjDPG/QLM1RBqsBs54oTDq1lKrk=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
dependencies = [
|
|
colorama
|
|
pyyaml
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
mock
|
|
pydantic
|
|
backoff
|
|
];
|
|
disabledTestPaths = [
|
|
# Disabled because test tries to install bash in a non-NixOS way
|
|
"tests/autocomplete/test_bash_install.py"
|
|
];
|
|
pythonImportsCheck = [ "nuclear" ];
|
|
|
|
meta = {
|
|
homepage = "https://igrek51.github.io/nuclear/";
|
|
description = "Binding glue for CLI Python applications";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ parras ];
|
|
};
|
|
}
|