Merge pull request #168271 from r-ryantm/auto-update/python3.10-twill

python310Packages.twill: 3.0.1 -> 3.0.2
This commit is contained in:
Fabian Affolter 2022-04-19 08:54:30 +02:00 committed by GitHub
commit 0063356eb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,31 +1,41 @@
{ lib, buildPythonPackage, fetchPypi, nose { lib
, buildPythonPackage
, fetchPypi
, lxml , lxml
, requests , requests
, pyparsing , pyparsing
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "twill"; pname = "twill";
version = "3.0.1"; version = "3.0.2";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "57cde4c3a2265f1a14d80007aa4f66c2135d509555499e9b156d2b4cf5048c2c"; hash = "sha256-dWtrdkiR1+IBfeF9jwbOjKE2UMXDJji0iOb+USbY7zk=";
}; };
checkInputs = [ nose ];
propagatedBuildInputs = [ propagatedBuildInputs = [
lxml lxml
requests requests
pyparsing pyparsing
]; ];
doCheck = false; # pypi package comes without tests, other homepage does not provide all verisons pythonImportsCheck = [
"twill"
];
# pypi package comes without tests, other homepage does not provide all verisons
doCheck = false;
meta = with lib; { meta = with lib; {
homepage = "https://twill-tools.github.io/twill/";
description = "A simple scripting language for Web browsing"; description = "A simple scripting language for Web browsing";
license = licenses.mit; homepage = "https://twill-tools.github.io/twill/";
license = licenses.mit;
maintainers = with maintainers; [ mic92 ]; maintainers = with maintainers; [ mic92 ];
}; };
} }