nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 41 lines 745 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 6 poetry-core, 7 pyyaml, 8 colorama, 9 junit-xml, 10}: 11 12buildPythonPackage rec { 13 pname = "refery"; 14 version = "2.1.0"; 15 pyproject = true; 16 17 src = fetchPypi { 18 inherit pname version; 19 hash = "sha512-ju0lqCSg0zcZNqRXDmFX6X1ugBocpmHMBWJApO6Tzhm/tLMQTKy2RpB4C8fkKCEWA2mYX4w1dLdHe68hZixwkQ=="; 20 }; 21 22 propagatedBuildInputs = [ 23 poetry-core 24 pyyaml 25 colorama 26 junit-xml 27 ]; 28 29 pythonImportsCheck = [ "refery" ]; 30 31 # No tests yet 32 doCheck = false; 33 34 meta = { 35 description = "Functional testing tool"; 36 homepage = "https://github.com/RostanTabet/refery"; 37 mainProgram = "refery"; 38 maintainers = with lib.maintainers; [ rostan-t ]; 39 license = lib.licenses.mit; 40 }; 41}