From ef7dd2e2593faa249e940f11f3d859accc87dad1 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sun, 22 Oct 2017 23:32:17 +0200 Subject: gnu: python-chardet: Fix PyPi download location. This is a followup to a54cb3ce1f114ee1bc26371d9bc4abb0e04001ef. * gnu/packages/python.scm (python-chardet)[source](uri): Use PYPI-URI. --- gnu/packages/python.scm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'gnu/packages/python.scm') diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 108a54f8d0..86bc4875bf 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -8623,10 +8623,7 @@ simulation, statistical modeling, machine learning and much more.") (source (origin (method url-fetch) - (uri (string-append - "https://pypi.python.org/packages/source/c/chardet/chardet-" - version - ".tar.gz")) + (uri (pypi-uri "chardet" version)) (sha256 (base32 "1bpalpia6r5x1kknbk11p1fzph56fmmnp405ds8icksd3knr5aw4")))) -- cgit v1.3 From 2b1b27990bb7600dcfcc7f5cfffe07c2118fa434 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 22 Oct 2017 15:21:49 +0200 Subject: gnu: python-graphene: Disable tests. * gnu/packages/python.scm (python-graphene)[native-inputs]: Remove. [arguments]: Disable #:tests. --- gnu/packages/python.scm | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'gnu/packages/python.scm') diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 86bc4875bf..47d5f63b7f 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -13168,18 +13168,14 @@ from Facebook.") (base32 "09zhac7igh9ixdz0ay6csy35b40l1jwbf2wrbxmgxwfhy51iy06q")))) (build-system python-build-system) - (native-inputs - `(("python-django-filter" ,python-django-filter) - ("python-mock" ,python-mock) - ("python-psycopg2" ,python-psycopg2) - ("python-pytest-django" ,python-pytest-django) - ("python-sqlalchemy-utils" ,python-sqlalchemy-utils))) (propagated-inputs `(("python-graphql-core" ,python-graphql-core) ("python-graphql-relay" ,python-graphql-relay) ("python-iso8601" ,python-iso8601) ("python-promise" ,python-promise) ("python-six" ,python-six))) + (arguments + `(#:tests? #f)) ; no tests/ in the PyPI tarball (home-page "http://graphene-python.org/") (synopsis "GraphQL Framework for Python") (description -- cgit v1.3 From db4411b42b902c79351aa704ce3949c48f1be29b Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Mon, 23 Oct 2017 23:48:40 -0400 Subject: gnu: python-docutils: Update to 0.14. * gnu/packages/python.scm (python-docutils, python2-docutils): Update to 0.14. --- 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 47d5f63b7f..4b080a8341 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3191,14 +3191,14 @@ logging and tracing of the execution.") (define-public python-docutils (package (name "python-docutils") - (version "0.13.1") + (version "0.14") (source (origin (method url-fetch) (uri (pypi-uri "docutils" version)) (sha256 (base32 - "1gkma47i609jfs7dssxn4y9vsz06qi0l5q41nws0zgkpnrghz33i")))) + "0x22fs3pdmr42kvz6c654756wja305qv6cx1zbhwlagvxgr4xrji")))) (build-system python-build-system) (arguments '(#:tests? #f)) ; no setup.py test command -- cgit v1.3