linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / robotframework / default.nix
blobcc57fa0d0264edcc5236b51fae34b2648beb020f
1 { lib, fetchPypi, buildPythonPackage }:
3 buildPythonPackage rec {
4   pname = "robotframework";
5   version = "3.2.2";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "a0786a916d0572bd9d6afe26e95c6021e3df5dcafa0ece6b302e36366e58c24e";
10     extension = "zip";
11   };
13   meta = with lib; {
14     description = "Generic test automation framework";
15     homepage = "https://robotframework.org/";
16     license = licenses.asl20;
17     maintainers = with maintainers; [ bjornfor ];
18   };