mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-04 16:51:40 -05:00
Merge pull request #268 from nix-community/poetry-1_1_5
poetry: 1.1.4 -> 1.1.5
This commit is contained in:
commit
2f1fd6a5bd
4 changed files with 323 additions and 243 deletions
552
pkgs/poetry/poetry.lock
generated
552
pkgs/poetry/poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "poetry"
|
name = "poetry"
|
||||||
version = "1.1.4"
|
version = "1.1.5"
|
||||||
description = "Python dependency management and packaging made easy."
|
description = "Python dependency management and packaging made easy."
|
||||||
authors = [
|
authors = [
|
||||||
"Sébastien Eustace <sebastien@eustace.io>"
|
"Sébastien Eustace <sebastien@eustace.io>"
|
||||||
|
@ -24,7 +24,7 @@ classifiers = [
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "~2.7 || ^3.5"
|
python = "~2.7 || ^3.5"
|
||||||
|
|
||||||
poetry-core = "^1.0.0"
|
poetry-core = "~1.0.2"
|
||||||
cleo = "^0.8.1"
|
cleo = "^0.8.1"
|
||||||
clikit = "^0.6.2"
|
clikit = "^0.6.2"
|
||||||
crashtest = { version = "^0.3.0", python = "^3.6" }
|
crashtest = { version = "^0.3.0", python = "^3.6" }
|
||||||
|
@ -71,6 +71,10 @@ pre-commit = { version = "^2.6", python = "^3.6.1" }
|
||||||
tox = "^3.0"
|
tox = "^3.0"
|
||||||
pytest-sugar = "^0.9.2"
|
pytest-sugar = "^0.9.2"
|
||||||
httpretty = "^0.9.6"
|
httpretty = "^0.9.6"
|
||||||
|
# We need to restrict the version of urllib3 to avoid
|
||||||
|
# httpretty breaking. This is fixed in httpretty >= 1.0.3
|
||||||
|
# but it's not compatible with Python 2.7 and 3.5.
|
||||||
|
urllib3 = "~1.25.10"
|
||||||
|
|
||||||
[tool.poetry.scripts]
|
[tool.poetry.scripts]
|
||||||
poetry = "poetry.console:main"
|
poetry = "poetry.console:main"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"owner": "python-poetry",
|
"owner": "python-poetry",
|
||||||
"repo": "poetry",
|
"repo": "poetry",
|
||||||
"rev": "8312e3f2dbfa126cd311c666fea30656941e1bd3",
|
"rev": "a9704149394151f4d0d28cd5d8ee2283c7d10787",
|
||||||
"sha256": "0lx3qpz5dad0is7ki5a4vxphvc8cm8fnv4bmrx226a6nvvaj6ahs",
|
"sha256": "0bv6irpscpak6pldkzrx4j12dqnpfz5h8fy5lliglizv0avh60hf",
|
||||||
"fetchSubmodules": true
|
"fetchSubmodules": true
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env nix-shell
|
#!/usr/bin/env nix-shell
|
||||||
#! nix-shell -i bash -p curl nix-prefetch-github
|
#! nix-shell -i bash -p curl nix-prefetch-github jq
|
||||||
|
|
||||||
rev=$(curl -s https://api.github.com/repos/python-poetry/poetry/releases/latest | jq -r '.name')
|
rev=$(curl -s https://api.github.com/repos/python-poetry/poetry/releases/latest | jq -r '.name')
|
||||||
nix-prefetch-github --rev "$rev" python-poetry poetry > src.json
|
nix-prefetch-github --rev "$rev" python-poetry poetry > src.json
|
||||||
|
|
Loading…
Add table
Reference in a new issue