chore: mirror rpds-py with no wheels

This commit is contained in:
Phillip Cloud 2023-07-16 08:59:53 -04:00
parent cd54268f81
commit 16efab33dd
No known key found for this signature in database
GPG key ID: D908212070FD785E
3 changed files with 82 additions and 3 deletions

View file

@ -8,4 +8,8 @@ let
preferWheels = false; preferWheels = false;
}; };
in in
assert !env.python.pkgs.rpds-py.src.isWheel; env assert !(env.python.pkgs.rpds-py.src.isWheel ||
env.python.pkgs.referencing.src.isWheel ||
env.python.pkgs.jsonschema-specifications.src.isWheel ||
env.python.pkgs.jsonschema.src.isWheel
); env

View file

@ -1,5 +1,77 @@
# This file is automatically @generated by Poetry and should not be changed by hand. # This file is automatically @generated by Poetry and should not be changed by hand.
[[package]]
name = "attrs"
version = "23.1.0"
description = "Classes Without Boilerplate"
category = "main"
optional = false
python-versions = ">=3.7"
files = [
{file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"},
{file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"},
]
[package.extras]
cov = ["attrs[tests]", "coverage[toml] (>=5.3)"]
dev = ["attrs[docs,tests]", "pre-commit"]
docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"]
tests = ["attrs[tests-no-zope]", "zope-interface"]
tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"]
[[package]]
name = "jsonschema"
version = "4.18.3"
description = "An implementation of JSON Schema validation for Python"
category = "main"
optional = false
python-versions = ">=3.8"
files = [
{file = "jsonschema-4.18.3-py3-none-any.whl", hash = "sha256:aab78b34c2de001c6b692232f08c21a97b436fe18e0b817bf0511046924fceef"},
{file = "jsonschema-4.18.3.tar.gz", hash = "sha256:64b7104d72efe856bea49ca4af37a14a9eba31b40bb7238179f3803130fd34d9"},
]
[package.dependencies]
attrs = ">=22.2.0"
jsonschema-specifications = ">=2023.03.6"
referencing = ">=0.28.4"
rpds-py = ">=0.7.1"
[package.extras]
format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"]
format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"]
[[package]]
name = "jsonschema-specifications"
version = "2023.6.1"
description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry"
category = "main"
optional = false
python-versions = ">=3.8"
files = [
{file = "jsonschema_specifications-2023.6.1-py3-none-any.whl", hash = "sha256:3d2b82663aff01815f744bb5c7887e2121a63399b49b104a3c96145474d091d7"},
{file = "jsonschema_specifications-2023.6.1.tar.gz", hash = "sha256:ca1c4dd059a9e7b34101cf5b3ab7ff1d18b139f35950d598d629837ef66e8f28"},
]
[package.dependencies]
referencing = ">=0.28.0"
[[package]]
name = "referencing"
version = "0.29.1"
description = "JSON Referencing + Python"
category = "main"
optional = false
python-versions = ">=3.8"
files = [
{file = "referencing-0.29.1-py3-none-any.whl", hash = "sha256:d3c8f323ee1480095da44d55917cfb8278d73d6b4d5f677e3e40eb21314ac67f"},
{file = "referencing-0.29.1.tar.gz", hash = "sha256:90cb53782d550ba28d2166ef3f55731f38397def8832baac5d45235f1995e35e"},
]
[package.dependencies]
attrs = ">=22.2.0"
rpds-py = ">=0.7.0"
[[package]] [[package]]
name = "rpds-py" name = "rpds-py"
version = "0.8.10" version = "0.8.10"
@ -110,4 +182,4 @@ files = [
[metadata] [metadata]
lock-version = "2.0" lock-version = "2.0"
python-versions = "^3.9" python-versions = "^3.9"
content-hash = "f7d1dcf18a379df9dcaaad4c2d77a00af2b5ee8abdcf77ccd7a27cd5d73edb2d" content-hash = "1ae6e5c22b1e64219fa5ef5d0f2bd484ca5d5cbf81b0fa4b4d3b5de95da510ec"

View file

@ -1,5 +1,5 @@
[tool.poetry] [tool.poetry]
name = "rpds-py-build-no-wheel" name = "rpds-py-build-wheel"
version = "0.1.0" version = "0.1.0"
description = "" description = ""
authors = ["Your Name <you@example.com>"] authors = ["Your Name <you@example.com>"]
@ -7,6 +7,9 @@ authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.9" python = "^3.9"
rpds-py = "^0.8" rpds-py = "^0.8"
referencing = "^0.29.1"
jsonschema-specifications = "^2023.6.1"
jsonschema = "^4.18.3"
[build-system] [build-system]
requires = ["poetry-core>=1.5"] requires = ["poetry-core>=1.5"]