nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 19 lines 490 B view raw
1{ stdenv, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "robotframework"; 5 version = "3.1.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "f10dd7c0c8c7962a4f80dd1e026b5db731b9391bc6e1f9ebb96d685eb1230dbc"; 10 extension = "zip"; 11 }; 12 13 meta = with stdenv.lib; { 14 description = "Generic test automation framework"; 15 homepage = https://robotframework.org/; 16 license = licenses.asl20; 17 maintainers = with maintainers; [ bjornfor ]; 18 }; 19}