python.pkgs.splinter: init at 0.7.7

This commit is contained in:
Frederik Rietdijk 2018-01-01 15:47:09 +01:00
parent 32020d06a3
commit ad2df95a2c
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchPypi
, selenium
, flask
, coverage
}:
buildPythonPackage rec {
pname = "splinter";
version = "0.7.7";
src = fetchPypi {
inherit pname version;
sha256 = "f97119f84d339067169451d56043f37f6b0a504a17a7ac6e48c91c012be72af6";
};
propagatedBuildInputs = [ selenium ];
checkInputs = [ flask coverage ];
# No tests included
doCheck = false;
meta = {
description = "Browser abstraction for web acceptance testing";
homepage = https://github.com/cobrateam/splinter;
license = lib.licenses.bsd3;
};
}

View File

@ -17392,6 +17392,8 @@ in {
};
});
splinter = callPackage ../development/python-modules/splinter { };
spotipy = callPackage ../development/python-modules/spotipy { };
Pweave = buildPythonPackage (rec {