summary refs log tree commit diff
path: root/pkgs/development/python-modules/twill
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@higgsboson.tk>2017-01-14 00:17:58 +0100
committerJörg Thalheim <joerg@higgsboson.tk>2017-01-18 18:26:32 +0100
commit17c457e47bd60e26d0c5135e0126d519cc69a653 (patch)
treebeeda3fed84872aa5c29e6df7cc54fc8b7c42995 /pkgs/development/python-modules/twill
parent3b44782026bcd839b5c98690d548c75e8dce3619 (diff)
downloadnixlib-17c457e47bd60e26d0c5135e0126d519cc69a653.tar
nixlib-17c457e47bd60e26d0c5135e0126d519cc69a653.tar.gz
nixlib-17c457e47bd60e26d0c5135e0126d519cc69a653.tar.bz2
nixlib-17c457e47bd60e26d0c5135e0126d519cc69a653.tar.lz
nixlib-17c457e47bd60e26d0c5135e0126d519cc69a653.tar.xz
nixlib-17c457e47bd60e26d0c5135e0126d519cc69a653.tar.zst
nixlib-17c457e47bd60e26d0c5135e0126d519cc69a653.zip
pythonPackages.twill: init at 0.9.1
Diffstat (limited to 'pkgs/development/python-modules/twill')
-rw-r--r--pkgs/development/python-modules/twill/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/twill/default.nix b/pkgs/development/python-modules/twill/default.nix
new file mode 100644
index 000000000000..6d4e3cbf1df3
--- /dev/null
+++ b/pkgs/development/python-modules/twill/default.nix
@@ -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 ];
+  };
+}