nixpkgs/pkgs/development/python-modules/runs/default.nix
Ihar Hrachyshka 567e8dfd8e
treewide: clean up 'meta = with' pattern
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>
2025-12-10 18:09:49 +01:00

46 lines
829 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
xmod,
pytestCheckHook,
tdir,
}:
buildPythonPackage rec {
pname = "runs";
version = "1.2.2";
pyproject = true;
src = fetchFromGitHub {
owner = "rec";
repo = "runs";
rev = "v${version}";
hash = "sha256-aEamhXr3C+jYDzQGzcmGFyl5oEtovxlNacFM08y0ZEk=";
};
build-system = [ poetry-core ];
dependencies = [ xmod ];
nativeCheckInputs = [
pytestCheckHook
tdir
];
disabledTests = [
# requires .git directory
"test_many"
];
pythonImportsCheck = [ "runs" ];
meta = {
description = "Run a block of text as a subprocess";
homepage = "https://github.com/rec/runs";
changelog = "https://github.com/rec/runs/blob/${src.rev}/CHANGELOG";
license = lib.licenses.mit;
maintainers = [ ];
};
}