poetry: 1.0.5 -> 1.0.8

This commit is contained in:
adisbladis 2020-06-08 17:29:43 +02:00
parent 8f9388f0ef
commit 384b8baba8
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7
4 changed files with 439 additions and 189 deletions

View file

@ -217,6 +217,12 @@ self: super:
}
);
intreehooks = super.intreehooks.overridePythonAttrs (
old: {
doCheck = false;
}
);
isort = super.isort.overridePythonAttrs (
old: {
propagatedBuildInputs = old.propagatedBuildInputs ++ [ self.setuptools ];
@ -589,6 +595,12 @@ self: super:
}
);
pytoml = super.pytoml.overridePythonAttrs (
old: {
doCheck = false;
}
);
pyqt5 =
let
drv = super.pyqt5;

585
pkgs/poetry/poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "poetry"
version = "1.0.5"
version = "1.0.8"
description = "Python dependency management and packaging made easy."
authors = [
"Sébastien Eustace <sebastien@eustace.io>"
@ -58,7 +58,10 @@ subprocess32 = { version = "^3.5", python = "~2.7 || ~3.4" }
importlib-metadata = {version = "~1.1.3", python = "<3.8"}
[tool.poetry.dev-dependencies]
pytest = "^4.1"
pytest = [
{version = "^4.1", python = "<3.5"},
{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"
@ -116,3 +119,23 @@ known_third_party = [
"shellingham",
"tomlkit",
]
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| tests/.*/setup.py
)/
'''

View file

@ -1,6 +1,6 @@
{
"owner": "python-poetry",
"repo": "poetry",
"rev": "754dbf80dc022b89974288cff10b40ab2f1c2697",
"sha256": "1khjx598n222fhzvsxsc6cq4m2i8rss1k1whxw9k03kxi4dx6x5g"
"rev": "6f9d6b0e1b7b1d3a7d7b2ca3478ad2cb0a7188e2",
"sha256": "1g9kcp3zlfk3f063hz1av9jj7s60pwxzqgj59w21sd5fx7yzdsaf"
}