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

31 lines
572 B
Nix
Raw Normal View History

2018-01-01 14:47:09 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, selenium
, flask
, coverage
}:
buildPythonPackage rec {
pname = "splinter";
version = "0.14.0";
2018-01-01 14:47:09 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "459e39e7a9f7572db6f1cdb5fdc5ccfc6404f021dccb969ee6287be2386a40db";
2018-01-01 14:47:09 +00:00
};
propagatedBuildInputs = [ selenium ];
checkInputs = [ flask coverage ];
# No tests included
doCheck = false;
meta = {
description = "Browser abstraction for web acceptance testing";
homepage = "https://github.com/cobrateam/splinter";
2018-01-01 14:47:09 +00:00
license = lib.licenses.bsd3;
};
}