mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
pythonPackages.twill: init at 0.9.1
This commit is contained in:
parent
3b44782026
commit
17c457e47b
23
pkgs/development/python-modules/twill/default.nix
Normal file
23
pkgs/development/python-modules/twill/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -25879,6 +25879,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
twill = callPackage ../development/python-modules/twill { };
|
||||
|
||||
twitter = buildPythonPackage rec {
|
||||
name = "twitter-${version}";
|
||||
version = "1.15.0";
|
||||
|
Loading…
Reference in New Issue
Block a user