nixpkgs/pkgs/development/python-modules/splinter/default.nix
R. RyanTM 2957f9f79d python37Packages.splinter: 0.10.0 -> 0.11.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-splinter/versions
2019-07-17 09:38:59 +02:00

30 lines
557 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, selenium
, flask
, coverage
}:
buildPythonPackage rec {
pname = "splinter";
version = "0.11.0";
src = fetchPypi {
inherit pname version;
sha256 = "0ddv80dv54rraa18lg9v7m9z61wzfwv6ww9ld83mr32gy3a2238p";
};
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;
};
}