pythonPackages.twill: init at 0.9.1

This commit is contained in:
Jörg Thalheim 2017-01-14 00:17:58 +01:00
parent 3b44782026
commit 17c457e47b
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, buildPythonPackage, fetchurl, isPy3k, pythonPackages }:
buildPythonPackage rec {
name = "twill-0.9.1";
disabled = isPy3k;
src = fetchurl {
url = "mirror://pypi/t/twill/${name}.tar.gz";
sha256 = "0zmssp41cgb5sz1jym7rxy6mamb64dxq3wra1bn6snna9v653pyj";
};
propagatedBuildInputs = with pythonPackages; [ nose ];
doCheck = false; # pypi package comes without tests, other homepage does not provide all verisons
meta = with stdenv.lib; {
homepage = http://twill.idyll.org/;
description = "a simple scripting language for Web browsing";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ Mic92 ];
};
}

View File

@ -25879,6 +25879,8 @@ in {
};
};
twill = callPackage ../development/python-modules/twill { };
twitter = buildPythonPackage rec {
name = "twitter-${version}";
version = "1.15.0";