pythonPackages.robotsuite: move to python-modules/
Easier maintenance when expressions are in separate files.
This commit is contained in:
parent
7357b369d5
commit
489cdc23fc
21
pkgs/development/python-modules/robotsuite/default.nix
Normal file
21
pkgs/development/python-modules/robotsuite/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, unittest2, robotframework, lxml }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "robotsuite";
|
||||
version = "2.0.0";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "15iw7g6gspf1ill0mzjrj71dirqfc86f1j14wphdvs2lazv8d50z";
|
||||
};
|
||||
|
||||
buildInputs = [ unittest2 ];
|
||||
propagatedBuildInputs = [ robotframework lxml ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Python unittest test suite for Robot Framework";
|
||||
homepage = http://github.com/collective/robotsuite/;
|
||||
license = licenses.gpl3;
|
||||
};
|
||||
}
|
@ -18746,27 +18746,7 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
robotsuite = buildPythonPackage rec {
|
||||
pname = "robotsuite";
|
||||
version = "2.0.0";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "15iw7g6gspf1ill0mzjrj71dirqfc86f1j14wphdvs2lazv8d50z";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ unittest2 ];
|
||||
propagatedBuildInputs = with self; [ robotframework lxml ];
|
||||
|
||||
meta = {
|
||||
description = "Python unittest test suite for Robot Framework";
|
||||
homepage = http://github.com/collective/robotsuite/;
|
||||
license = licenses.gpl3;
|
||||
};
|
||||
};
|
||||
|
||||
robotsuite = callPackage ../development/python-modules/robotsuite { };
|
||||
|
||||
robotframework-ride = buildPythonPackage rec {
|
||||
version = "1.2.3";
|
||||
|
Loading…
Reference in New Issue
Block a user