Skip to content

Commit 14fc7a9

Browse files
stig: modernise
- Use "pyproject = true" and "build-system = [ setuptools ]" - Specify run-time Python dependencies via "dependencies" Co-authored-by: Robert Schütz <[email protected]>
1 parent a0a2932 commit 14fc7a9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

pkgs/by-name/st/stig/package.nix

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ python3Packages.buildPythonApplication rec {
1111
# This project has a different concept for pre release / alpha,
1212
# Read the project's README for details: https://github.com/rndusr/stig#stig
1313
version = "0.12.10a0";
14+
pyproject = true;
1415

1516
src = fetchFromGitHub {
1617
owner = "rndusr";
@@ -19,7 +20,11 @@ python3Packages.buildPythonApplication rec {
1920
sha256 = "sha256-lSFI4/DxWl17KFgLXZ7c5nW/e5IUGN7s8Gm6wTM5ZWg=";
2021
};
2122

22-
propagatedBuildInputs = with python3Packages; [
23+
build-system = with python3Packages; [
24+
setuptools
25+
];
26+
27+
dependencies = with python3Packages; [
2328
urwid
2429
urwidtrees
2530
aiohttp

0 commit comments

Comments
 (0)