Files
nixpkgs/pkgs/development/python-modules/bork/default.nix
Philip Taron 71df0dfb93 python3Packages.bork: fix build
The `bork` build broke when `build` [updated], so this commit un-borks `bork` by relaxing the build requirement on `build`.

Yes, I do think I'm clever, why do you ask?

[updated]: e1338b7267
2025-08-25 12:49:24 -07:00

77 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
callPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
build,
coloredlogs,
importlib-metadata,
packaging,
pip,
toml,
urllib3,
}:
buildPythonPackage rec {
pname = "bork";
version = "9.0.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "duckinator";
repo = "bork";
tag = "v${version}";
hash = "sha256-YqvtOwd00TXD4I3fIQolvjHnjREvQgbdrEO9Z96v1Kk=";
};
build-system = [
setuptools
];
pythonRelaxDeps = [
"build"
"packaging"
"urllib3"
];
dependencies = [
build
coloredlogs
packaging
pip
urllib3
]
++ lib.optionals (pythonOlder "3.11") [ toml ]
++ lib.optionals (pythonOlder "3.10") [ importlib-metadata ];
pythonImportsCheck = [
"bork"
"bork.api"
"bork.cli"
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTestMarks = [ "network" ];
disabledTests = [
# tries to call python -m bork
"test_repo"
];
passthru.tests = callPackage ./tests.nix { };
meta = with lib; {
description = "Python build and release management tool";
mainProgram = "bork";
homepage = "https://github.com/duckinator/bork";
license = licenses.mit;
maintainers = with maintainers; [ nicoo ];
};
}