Merge pull request #280798 from rostan-t/add-refery

python3Packages.refery: init at 2.1.0 and maintainers: add rostan-t
This commit is contained in:
Janik
2024-02-21 00:21:02 +01:00
committed by GitHub
3 changed files with 53 additions and 0 deletions
+6
View File
@@ -16521,6 +16521,12 @@
github = "RossComputerGuy";
githubId = 19699320;
};
rostan-t = {
name = "Rostan Tabet";
email = "rostan.tabet@gmail.com";
github = "rostan-t";
githubId = 30502549;
};
rotaerk = {
name = "Matthew Stewart";
email = "m.scott.stewart@gmail.com";
@@ -0,0 +1,45 @@
{ 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;
};
}
+2
View File
@@ -12620,6 +12620,8 @@ self: super: with self; {
referencing = callPackage ../development/python-modules/referencing { };
refery = callPackage ../development/python-modules/refery { };
reflink = callPackage ../development/python-modules/reflink { };
regenmaschine = callPackage ../development/python-modules/regenmaschine { };