py-srsly: add new package (#16294)
This commit is contained in:
parent
dbd0fe8190
commit
d0ccab7d17
29
var/spack/repos/builtin/packages/py-srsly/package.py
Normal file
29
var/spack/repos/builtin/packages/py-srsly/package.py
Normal file
@ -0,0 +1,29 @@
|
||||
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
||||
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
||||
#
|
||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||
|
||||
|
||||
class PySrsly(PythonPackage):
|
||||
"""srsly: Modern high-performance serialization utilities for Python."""
|
||||
|
||||
homepage = "https://github.com/explosion/srsly"
|
||||
url = "https://pypi.io/packages/source/s/srsly/srsly-2.0.1.tar.gz"
|
||||
|
||||
version('2.0.1', sha256='fa3c7375be8fe75f23c27feafbfb5f738d55ffdbf02964c6896fb7684f519a52')
|
||||
version('2.0.0', sha256='785b00e00406120dbef4ca82925051e6b60fe870c5f84f0d22b3632d574eb870')
|
||||
version('1.0.2', sha256='59258b81d567df207f8a0a33c4b5fa232afccf1d927c8ce3ba5395bfd64c0ed8')
|
||||
|
||||
depends_on('python@3.6:', when='@2:', type=('build', 'run'))
|
||||
depends_on('py-setuptools', type='build')
|
||||
depends_on('py-wheel', when='@2:', type='build')
|
||||
depends_on('py-cython@0.25:', when='@2:', type='build')
|
||||
depends_on('py-pathlib@1.0.1', when='^python@:3.3', type=('build', 'run'))
|
||||
depends_on('py-pytest', type='test')
|
||||
depends_on('py-mock', type='test')
|
||||
depends_on('py-numpy', type='test')
|
||||
depends_on('py-six', when='@:1', type='test')
|
||||
depends_on('py-pytz', when='@:1', type='test')
|
||||
|
||||
# https://github.com/explosion/srsly/pull/24
|
||||
patch('subprocess.patch', when='@2.0.0:2.0.1')
|
12
var/spack/repos/builtin/packages/py-srsly/subprocess.patch
Normal file
12
var/spack/repos/builtin/packages/py-srsly/subprocess.patch
Normal file
@ -0,0 +1,12 @@
|
||||
diff -Naur a/srsly/tests/cloudpickle/testutils.py b/srsly/tests/cloudpickle/testutils.py
|
||||
--- a/srsly/tests/cloudpickle/testutils.py 2020-04-24 16:10:43.000000000 -0500
|
||||
+++ b/srsly/tests/cloudpickle/testutils.py 2020-04-24 16:11:02.000000000 -0500
|
||||
@@ -5,7 +5,7 @@
|
||||
from subprocess import Popen, check_output, PIPE, STDOUT, CalledProcessError
|
||||
from srsly.cloudpickle.cloudpickle import dumps
|
||||
from pickle import loads
|
||||
-from suprocess import TimeoutExpired
|
||||
+from subprocess import TimeoutExpired
|
||||
|
||||
|
||||
TEST_GLOBALS = "a test value"
|
Loading…
Reference in New Issue
Block a user