From bea6d94d2498f45b5dc99375ab367ffa51a6abfd Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sun, 13 Mar 2016 16:09:17 -0400 Subject: gnu: python-hypothesis: Update to 3.1.0. * gnu/packages/python.scm (python-hypothesis, python2-hypothesis): Update to 3.1.0. --- gnu/packages/python.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/python.scm') diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 050f9e64c0..a44c8ea8d0 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -7457,13 +7457,13 @@ Amazon Web Services (AWS) API.") (define-public python-hypothesis (package (name "python-hypothesis") - (version "3.0.4") + (version "3.1.0") (source (origin (method url-fetch) (uri (pypi-uri "hypothesis" version)) (sha256 (base32 - "0bh6pqyc56cqlbpg0ffzjs6466blyylix4nsw11qrqwf01cg9gdq")))) + "0qyqq9akm4vshhn8cngjc1qykcvsn7cz6dlm6njfsgpbraqrmbbw")))) (build-system python-build-system) (propagated-inputs `(("python-flake8" ,python-flake8) -- cgit 1.4.1 From 9bb6d18482429ffbe88788c982c92477561e2fdc Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 28 Jan 2016 00:42:33 -0500 Subject: gnu: Add python2-atomicwrites. * gnu/packages/python.scm (python2-atomicwrites): New variable. --- gnu/packages/python.scm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'gnu/packages/python.scm') diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index a44c8ea8d0..916931e2da 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6756,7 +6756,14 @@ WebSocket usage in Python programs.") (description "Library for atomic file writes using platform dependent tools for atomic filesystem operations.") (home-page "https://github.com/untitaker/python-atomicwrites") - (license license:expat))) + (license license:expat) + (properties `((python2-variant . ,(delay python2-atomicwrites)))))) + +(define-public python2-atomicwrites + (package (inherit (package-with-python2 + (strip-python2-variant python-atomicwrites))) + (native-inputs + `(("python2-setuptools" ,python2-setuptools))))) (define-public python-requests-toolbelt (package -- cgit 1.4.1 From d3b29319b195e3b94c468469cb2f29c2a9c859e6 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 3 Mar 2016 17:04:16 -0500 Subject: gnu: python2-pyicu: Update to 1.9.2. * gnu/packages/python.scm (python2-pyicu): Update to 1.9.2. --- gnu/packages/python.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/python.scm') diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 916931e2da..271e15789e 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1136,7 +1136,7 @@ Python 3.3+.") (define-public python2-pyicu (package (name "python2-pyicu") - (version "1.8") + (version "1.9.2") (source (origin (method url-fetch) @@ -1144,7 +1144,7 @@ Python 3.3+.") version ".tar.gz")) (sha256 (base32 - "1y361x82lnh9k9srmdx3q92z5iag112z7r5fxm0n1sfwb349yjdw")))) + "1diba0g8md614fvm9yf50paiwdkhj6rd7xwf1rg9mc0pxc0hhn4v")))) (build-system python-build-system) (inputs `(("icu4c" ,icu4c))) -- cgit 1.4.1 From ed07b08d937a8f1f3f982f3fc825e5319c156503 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 3 Mar 2016 17:04:56 -0500 Subject: gnu: Split python2-pyicu into python-pyicu and python2-pyicu. * gnu/packages/python.scm (python2-pyicu): Split variable into... (python-pyicu, python2-pyicu): ...both Python variants. (python-pyicu)[arguments]: Enable tests. --- gnu/packages/python.scm | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'gnu/packages/python.scm') diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 271e15789e..9730219e7d 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1133,9 +1133,9 @@ Python 3.3+.") (package-with-python2 python-simplejson)) -(define-public python2-pyicu +(define-public python-pyicu (package - (name "python2-pyicu") + (name "python-pyicu") (version "1.9.2") (source (origin @@ -1148,15 +1148,18 @@ Python 3.3+.") (build-system python-build-system) (inputs `(("icu4c" ,icu4c))) - (arguments - `(#:python ,python-2 ; Python 3 works also, but needs special care for - ; linking with libpython3.3m - #:tests? #f)) ; no check target (home-page "http://pyicu.osafoundation.org/") (synopsis "Python extension wrapping the ICU C++ API") (description "PyICU is a python extension wrapping the ICU C++ API.") - (license x11))) + (license x11) + (properties `((python2-variant . ,(delay python2-pyicu)))))) + +(define-public python2-pyicu + (package + (inherit (package-with-python2 + (strip-python2-variant python-pyicu))) + (native-inputs `(("python2-setuptools" ,python2-setuptools))))) (define-public python2-dogtail ;; Python 2 only, as it leads to "TabError: inconsistent use of tabs and -- cgit 1.4.1 From eed1a61fbbae973defa81a886080dd743c12c828 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Thu, 28 Jan 2016 00:51:49 -0500 Subject: gnu: Add python-vobject. * gnu/packages/python.scm (python-vobject, python2-vobject): New variables. --- gnu/packages/python.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'gnu/packages/python.scm') diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 9730219e7d..af3c60bac9 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -8203,3 +8203,33 @@ introspection of @code{zope.interface} instances in code.") (inherit (package-with-python2 (strip-python2-variant python-psycopg2))) (native-inputs `(("python2-setuptools" ,python2-setuptools))))) + +(define-public python-vobject + (package + (name "python-vobject") + (version "0.9.1") + (source (origin + (method url-fetch) + (uri (pypi-uri "vobject" version)) + (sha256 + (base32 + "1cwzjnrdr9yg2x21wbf3kf59ibnchvj33mygd69yzi178a9gs9gz")))) + (build-system python-build-system) + (inputs + `(("python-dateutil-2" ,python-dateutil-2) + ("python-pyicu" ,python-pyicu))) + (synopsis "Parse and generate vCard and vCalendar files") + (description "Vobject is intended to be a full featured Python package for +parsing and generating vCard and vCalendar files. Currently, iCalendar files +are supported and well tested. vCard 3.0 files are supported, and all data +should be imported, but only a few components are understood in a sophisticated +way.") + (home-page "http://eventable.github.io/vobject/") + (license asl2.0) + (properties `((python2-variant . ,(delay python2-vobject)))))) + +(define-public python2-vobject + (package + (inherit (package-with-python2 + (strip-python2-variant python-vobject))) + (native-inputs `(("python2-setuptools" ,python2-setuptools))))) -- cgit 1.4.1