depot/third_party/nixpkgs/pkgs/development/python-modules/runs/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

46 lines
853 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 = with lib; {
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 = licenses.mit;
maintainers = with maintainers; [ ];
};
}