517534810d
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
30 lines
557 B
Nix
30 lines
557 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, selenium
|
|
, flask
|
|
, coverage
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "splinter";
|
|
version = "0.10.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1x5g7pfj813rnci7dc46y01bq24qzw5qwlzm4iw61hg66q2kg7rd";
|
|
};
|
|
|
|
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;
|
|
};
|
|
} |