nixpkgs/pkgs/development/python-modules/robotsuite/default.nix

28 lines
659 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi
, unittest2, lxml, robotframework
}:
buildPythonPackage rec {
pname = "robotsuite";
2020-06-06 06:47:30 +00:00
version = "2.2.1";
src = fetchPypi {
inherit pname version;
2020-06-06 06:47:30 +00:00
sha256 = "8764e01990ac6774e0c983579bcb9cb79f44373a61ad47fbae9a1dc7eedbdd61";
};
buildInputs = [ unittest2 ];
propagatedBuildInputs = [ robotframework lxml ];
postPatch = ''
substituteInPlace setup.py \
--replace robotframework-python3 robotframework
'';
meta = with lib; {
description = "Python unittest test suite for Robot Framework";
homepage = "https://github.com/collective/robotsuite/";
license = licenses.gpl3;
};
}