guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: Add python-cssselect.


From: Andreas Enge
Subject: 01/01: gnu: Add python-cssselect.
Date: Sat, 14 Feb 2015 18:43:10 +0000

andreas pushed a commit to branch master
in repository guix.

commit 880ff77c17918b9cf3cb0432e70a8391b9942ec2
Author: Andreas Enge <address@hidden>
Date:   Sat Feb 14 19:37:56 2015 +0100

    gnu: Add python-cssselect.
    
    * gnu/packages/python.scm (python-cssselect, python2-cssselect):
        New variables.
---
 gnu/packages/python.scm |   34 ++++++++++++++++++++++++++++++++++
 1 files changed, 34 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index bd2e497..4bc023a 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -3144,3 +3144,37 @@ capabilities to the Python interpreter.")
 Cascading Style Sheets.  Currently it provides a DOM only and no rendering
 options.")
     (license lgpl3+)))
+
+(define-public python-cssselect
+  (package
+    (name "python-cssselect")
+    (version "0.9.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append
+              "https://pypi.python.org/packages/source/c/cssselect/cssselect-";
+              version
+              ".tar.gz"))
+        (sha256
+          (base32
+            "10h623qnp6dp1191jri7lvgmnd4yfkl36k9smqklp1qlf3iafd85"))))
+    (build-system python-build-system)
+    (inputs
+      `(("python-setuptools" ,python-setuptools)))
+    (arguments
+     ;; tests fail with message
+     ;; AttributeError: 'module' object has no attribute 'tests'
+     `(#:tests? #f))
+    (home-page
+      "https://pythonhosted.org/cssselect/";)
+    (synopsis
+      "CSS3 selector parser and translator to XPath 1.0")
+    (description
+      "Cssselect ia a Python module that parses CSS3 Selectors and translates
+them to XPath 1.0 expressions.  Such expressions can be used in lxml or
+another XPath engine to find the matching elements in an XML or HTML 
document.")
+    (license bsd-3)))
+
+(define-public python2-cssselect
+  (package-with-python2 python-cssselect))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]