This reverts commit65a333600d. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
47 lines
835 B
Nix
47 lines
835 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 = [ ];
|
|
};
|
|
}
|