python.pkgs.splinter: init at 0.7.7
This commit is contained in:
parent
32020d06a3
commit
ad2df95a2c
30
pkgs/development/python-modules/splinter/default.nix
Normal file
30
pkgs/development/python-modules/splinter/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -17392,6 +17392,8 @@ in {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
splinter = callPackage ../development/python-modules/splinter { };
|
||||||
|
|
||||||
spotipy = callPackage ../development/python-modules/spotipy { };
|
spotipy = callPackage ../development/python-modules/spotipy { };
|
||||||
|
|
||||||
Pweave = buildPythonPackage (rec {
|
Pweave = buildPythonPackage (rec {
|
||||||
|
Loading…
Reference in New Issue
Block a user