fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
44 lines
799 B
Nix
44 lines
799 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
|
|
poetry-core,
|
|
pyyaml,
|
|
colorama,
|
|
junit-xml,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "refery";
|
|
version = "2.1.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha512-ju0lqCSg0zcZNqRXDmFX6X1ugBocpmHMBWJApO6Tzhm/tLMQTKy2RpB4C8fkKCEWA2mYX4w1dLdHe68hZixwkQ==";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
poetry-core
|
|
pyyaml
|
|
colorama
|
|
junit-xml
|
|
];
|
|
|
|
pythonImportCheck = [ "refery" ];
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
# No tests yet
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Functional testing tool";
|
|
homepage = "https://github.com/RostanTabet/refery";
|
|
mainProgram = "refery";
|
|
maintainers = with maintainers; [ rostan-t ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|