mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
poetry: 1.0.10 -> 1.1.0
This commit is contained in:
parent
327b6a6ea6
commit
1bebfa70f8
4 changed files with 545 additions and 1564 deletions
|
@ -14,6 +14,7 @@ poetry2nix.mkPoetryApplication {
|
|||
|
||||
# "Vendor" dependencies (for build-system support)
|
||||
postPatch = ''
|
||||
echo "import sys" >> poetry/__init__.py
|
||||
for path in ''${PYTHONPATH//:/ }; do echo $path; done | uniq | while read path; do
|
||||
echo "sys.path.insert(0, \"$path\")" >> poetry/__init__.py
|
||||
done
|
||||
|
|
2019
pkgs/poetry/poetry.lock
generated
2019
pkgs/poetry/poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "poetry"
|
||||
version = "1.0.10"
|
||||
version = "1.1.0"
|
||||
description = "Python dependency management and packaging made easy."
|
||||
authors = [
|
||||
"Sébastien Eustace <sebastien@eustace.io>"
|
||||
|
@ -22,40 +22,43 @@ classifiers = [
|
|||
|
||||
# Requirements
|
||||
[tool.poetry.dependencies]
|
||||
python = "~2.7 || ^3.4"
|
||||
cleo = "^0.7.6"
|
||||
clikit = "^0.4.2"
|
||||
python = "~2.7 || ^3.5"
|
||||
|
||||
poetry-core = "^1.0.0"
|
||||
cleo = "^0.8.1"
|
||||
clikit = "^0.6.2"
|
||||
crashtest = { version = "^0.3.0", python = "^3.6" }
|
||||
requests = "^2.18"
|
||||
cachy = "^0.3.0"
|
||||
requests-toolbelt = "^0.8.0"
|
||||
jsonschema = "^3.1"
|
||||
pyrsistent = "^0.14.2"
|
||||
pyparsing = "^2.2"
|
||||
requests-toolbelt = "^0.9.1"
|
||||
cachecontrol = { version = "^0.12.4", extras = ["filecache"] }
|
||||
pkginfo = "^1.4"
|
||||
html5lib = "^1.0"
|
||||
shellingham = "^1.1"
|
||||
tomlkit = "^0.5.11"
|
||||
tomlkit = ">=0.7.0,<1.0.0"
|
||||
pexpect = "^4.7.0"
|
||||
packaging = "^20.4"
|
||||
virtualenv = { version = "^20.0.26" }
|
||||
|
||||
# The typing module is not in the stdlib in Python 2.7 and 3.4
|
||||
typing = { version = "^3.6", python = "~2.7 || ~3.4" }
|
||||
# The typing module is not in the stdlib in Python 2.7
|
||||
typing = { version = "^3.6", python = "~2.7" }
|
||||
|
||||
# Use pathlib2 for Python 2.7 and 3.4
|
||||
pathlib2 = { version = "^2.3", python = "~2.7 || ~3.4" }
|
||||
# Use pathlib2 for Python 2.7
|
||||
pathlib2 = { version = "^2.3", python = "~2.7" }
|
||||
# Use futures on Python 2.7
|
||||
futures = { version = "^3.3.0", python = "~2.7" }
|
||||
# Use glob2 for Python 2.7 and 3.4
|
||||
glob2 = { version = "^0.6", python = "~2.7 || ~3.4" }
|
||||
# Use virtualenv for Python 2.7 since venv does not exist
|
||||
virtualenv = { version = "^16.7.9", python = "~2.7" }
|
||||
glob2 = { version = "^0.6", python = "~2.7" }
|
||||
# functools32 is needed for Python 2.7
|
||||
functools32 = { version = "^3.2.3", python = "~2.7" }
|
||||
keyring = [
|
||||
{ version = "^18.0.1", python = "~2.7 || ~3.4" },
|
||||
{ version = "^20.0.1", python = "^3.5" }
|
||||
{ version = "^18.0.1", python = "~2.7" },
|
||||
{ version = "^20.0.1", python = "~3.5" },
|
||||
{ version = "^21.2.0", python = "^3.6" }
|
||||
]
|
||||
# Use subprocess32 for Python 2.7 and 3.4
|
||||
subprocess32 = { version = "^3.5", python = "~2.7 || ~3.4" }
|
||||
importlib-metadata = {version = "~1.1.3", python = "<3.8"}
|
||||
# Use subprocess32 for Python 2.7
|
||||
subprocess32 = { version = "^3.5", python = "~2.7" }
|
||||
importlib-metadata = {version = "^1.6.0", python = "<3.8"}
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
pytest = [
|
||||
|
@ -63,62 +66,33 @@ pytest = [
|
|||
{version = "^5.4.3", python = ">=3.5"}
|
||||
]
|
||||
pytest-cov = "^2.5"
|
||||
mkdocs = { version = "^1.0", python = "~2.7.9 || ^3.4" }
|
||||
pymdown-extensions = "^6.0"
|
||||
pygments = "^2.2"
|
||||
pytest-mock = "^1.9"
|
||||
pygments-github-lexers = "^0.0.5"
|
||||
black = { version = "^19.10b0", python = "^3.6" }
|
||||
pre-commit = "^1.10"
|
||||
pre-commit = { version = "^2.6", python = "^3.6.1" }
|
||||
tox = "^3.0"
|
||||
pytest-sugar = "^0.9.2"
|
||||
httpretty = "^0.9.6"
|
||||
markdown-include = "^0.5.1"
|
||||
|
||||
[tool.poetry.scripts]
|
||||
poetry = "poetry.console:main"
|
||||
|
||||
|
||||
[build-system]
|
||||
requires = ["intreehooks"]
|
||||
build-backend = "intreehooks:loader"
|
||||
|
||||
[tool.intreehooks]
|
||||
build-backend = "poetry.masonry.api"
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
|
||||
[tool.isort]
|
||||
line_length = 88
|
||||
profile = "black"
|
||||
force_single_line = true
|
||||
atomic = true
|
||||
include_trailing_comma = true
|
||||
lines_after_imports = 2
|
||||
lines_between_types = 1
|
||||
multi_line_output = 3
|
||||
use_parentheses = true
|
||||
not_skip = "__init__.py"
|
||||
src_paths = ["poetry", "tests"]
|
||||
skip_glob = ["*/setup.py"]
|
||||
filter_files = true
|
||||
|
||||
known_first_party = "poetry"
|
||||
known_third_party = [
|
||||
"cachecontrol",
|
||||
"cachy",
|
||||
"cleo",
|
||||
"clikit",
|
||||
"html5lib",
|
||||
"httpretty",
|
||||
"jsonschema",
|
||||
"keyring",
|
||||
"pexpect",
|
||||
"pkginfo",
|
||||
"pyparsing",
|
||||
"pytest",
|
||||
"requests",
|
||||
"requests_toolbelt",
|
||||
"shellingham",
|
||||
"tomlkit",
|
||||
]
|
||||
|
||||
|
||||
[tool.black]
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"owner": "python-poetry",
|
||||
"repo": "poetry",
|
||||
"rev": "d3c9049a18ae33baacfcb5c698777282f2f58128",
|
||||
"sha256": "00qfzjjs6clh93gfl1px3ma9km8qxl3f4z819nmyl58zc8ni3zyv"
|
||||
"rev": "539d7f732c34c821258a9853cd3078cbda34a717",
|
||||
"sha256": "0kl23dkq9n112z1pqjg6f1wv3qk77ij6q5glg15lwrj7yrl9k65c",
|
||||
"fetchSubmodules": true
|
||||
}
|
Loading…
Add table
Reference in a new issue