;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013, 2014, 2015 Ludovic Courtès ;;; Copyright © 2014, 2015 Mark H Weaver ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages tor) #:use-module ((guix licenses) #:select (bsd-3 gpl2+)) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (gnu packages libevent) #:use-module (gnu packages compression) #:use-module (gnu packages pcre) #:use-module (gnu packages python) #:use-module (gnu packages autotools) #:use-module (gnu packages tls) #:use-module (gnu packages w3m)) (define-public tor (package (name "tor") (version "0.2.6.10") (source (origin (method url-fetch) (uri (string-append "https://www.torproject.org/dist/tor-" version ".tar.gz")) (sha256 (base32 "13ab4bqz19980q4qgmbr7ar4r9y70bmsfbw66y9n31ivwkpw0hh5")))) (build-system gnu-build-system) (native-inputs `(("python" ,python-2))) ; for tests (inputs `(("zlib" ,zlib) ("openssl" ,openssl) ("libevent" ,libevent))) ;; TODO: Recommend `torsocks' since `torify' needs it. (home-page "http://www.torproject.org/") (synopsis "Anonymous network router to improve privacy on the Internet") (description "Tor protects you by bouncing your communications around a distributed 2024-02-27gnu: python-poppy: Speed up tests.Sharlatan Hellseher * gnu/packages/astronomy.scm (python-poppy): Speed up tests. [arguments] <#:test-flags>: Add with "-n" option. [native-inputs]: Add python-pytest-xdist and python-scikit-image. Change-Id: Ic72b1c7c700204cc91e00dcc5a0706859420109b 2024-02-27gnu: python-photutils: Speed up testsSharlatan Hellseher * gnu/packages/astronomy.scm (python-photutils): Enable parallel tests to speed them up. [arguments] <#:test-flags>: Add it with "-n" option. [native-inputs]: Add python-pytest-xdist. Change-Id: I3eff6c4ac4f6c3d8367179e1e8cdf55bbf1c03cc 2024-02-27gnu: python-asdf-coordinates-schemas: Speed up tests.Sharlatan Hellseher * gnu/packages/astronomy.scm (python-asdf-coordinates-schemas): Speed up tests. [arguments] <#:test-flags>: Add it with "-n" option. [native-inputs]: Add python-pytest-xdist. [propagated-inputs]: Swap python-asdf to python-asdf-3.0. Change-Id: I0cf8aa077dbfa28e3473e5c49ab420426038884f 2024-02-27gnu: python-asdf-astropy: Speed up tests.Sharlatan Hellseher * gnu/packages/astronomy.scm (python-asdf-astropy): Enable parallel tests to speed them up. [arguments] <#:test-flags>: Add it with "-n" option. Change-Id: Icb2efbe6d9fa6f5154fa81189a3d0127f7d26568 2024-02-27gnu: python-asdf: Speed up tests.Sharlatan Hellseher * gnu/packages/astronomy.scm (python-asdf): Enable parallel tests to speed them up. [arguments] <#:test-flags>: Add it with "-n" option. [native-inputs]: Add python-pytest-xdist. Change-Id: I5a369e8f3ca43b9ba88c1053d0c55d218e6adc43