mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
python312Packages.clikit: refactor
This commit is contained in:
parent
3a9aba5506
commit
be871f95e9
@ -1,57 +1,39 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
isPy27,
|
||||
pythonAtLeast,
|
||||
poetry-core,
|
||||
|
||||
# propagates
|
||||
pylev,
|
||||
pastel,
|
||||
|
||||
# python36+
|
||||
crashtest,
|
||||
|
||||
# python2
|
||||
typing,
|
||||
enum34,
|
||||
|
||||
# tests
|
||||
fetchFromGitHub,
|
||||
pastel,
|
||||
poetry-core,
|
||||
pylev,
|
||||
pytest-mock,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "clikit";
|
||||
version = "0.6.2";
|
||||
format = "pyproject";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "sdispater";
|
||||
repo = pname;
|
||||
repo = "clikit";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-xAsUNhVQBjtSFHyjjnicAKRC3+Tdn3AdGDUYhmOOIdA=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace pyproject.toml --replace \
|
||||
'crashtest = { version = "^0.3.0", python = "^3.6" }' \
|
||||
'crashtest = { version = "*", python = "^3.6" }'
|
||||
'';
|
||||
pythonRelaxDeps = [ "crashtest" ];
|
||||
|
||||
nativeBuildInputs = [ poetry-core ];
|
||||
build-system = [ poetry-core ];
|
||||
|
||||
propagatedBuildInputs =
|
||||
[
|
||||
pylev
|
||||
pastel
|
||||
]
|
||||
++ lib.optionals (pythonAtLeast "3.6") [ crashtest ]
|
||||
++ lib.optionals isPy27 [
|
||||
typing
|
||||
enum34
|
||||
];
|
||||
dependencies = [
|
||||
crashtest
|
||||
pastel
|
||||
pylev
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytest-mock
|
||||
@ -61,8 +43,9 @@ buildPythonPackage rec {
|
||||
pythonImportsCheck = [ "clikit" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/sdispater/clikit";
|
||||
description = "Group of utilities to build beautiful and testable command line interfaces";
|
||||
homepage = "https://github.com/sdispater/clikit";
|
||||
changelog = "https://github.com/sdispater/clikit/blob/${version}/CHANGELOG.md";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jakewaksbaum ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user