mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 08:26:37 +01:00
This is almost all find-and-replace. I manually edited: * pkgs/development/python-modules/notifications-android-tv/default.nix, * pkgs/servers/home-assistant/default.nix, * pkgs/development/tools/continuous-integration/buildbot/master.nix A few files have not been changed in this PR because they would cause rebuilds. This PR should have 0 rebuilds.
41 lines
745 B
Nix
41 lines
745 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
|
|
poetry-core,
|
|
pyyaml,
|
|
colorama,
|
|
junit-xml,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "refery";
|
|
version = "2.1.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha512-ju0lqCSg0zcZNqRXDmFX6X1ugBocpmHMBWJApO6Tzhm/tLMQTKy2RpB4C8fkKCEWA2mYX4w1dLdHe68hZixwkQ==";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
poetry-core
|
|
pyyaml
|
|
colorama
|
|
junit-xml
|
|
];
|
|
|
|
pythonImportsCheck = [ "refery" ];
|
|
|
|
# No tests yet
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Functional testing tool";
|
|
homepage = "https://github.com/RostanTabet/refery";
|
|
mainProgram = "refery";
|
|
maintainers = with lib.maintainers; [ rostan-t ];
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|