mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-26 02:05:02 +00:00
Merge master into staging-next
This commit is contained in:
@@ -9,18 +9,16 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aioasuswrt";
|
||||
version = "1.3.3";
|
||||
version = "1.3.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kennedyshead";
|
||||
repo = pname;
|
||||
rev = "V${version}";
|
||||
sha256 = "1h1qwc7szgrcwiz4q6x4mlf26is20lj1ds5rcb9i611j26656v6d";
|
||||
rev = version;
|
||||
sha256 = "101d76zarvilzfmcy8n3bjqzyars8hsjzr0zc80d4rngv4vhrki1";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace "cryptography==3.3.2" "cryptography"
|
||||
substituteInPlace setup.cfg \
|
||||
--replace "--cov-report html" "" \
|
||||
--replace "--cov-report term-missing" ""
|
||||
|
||||
@@ -1,89 +1,60 @@
|
||||
{ buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, isPy3k
|
||||
, glibcLocales
|
||||
, lib
|
||||
, pythonOlder
|
||||
|
||||
{ lib
|
||||
, aiohttp
|
||||
, aiohttp-swagger
|
||||
, aiohttp-jinja2
|
||||
, aiohttp-remotes
|
||||
, aiohttp-swagger
|
||||
, buildPythonPackage
|
||||
, clickclick
|
||||
, decorator
|
||||
, flake8
|
||||
, fetchFromGitHub
|
||||
, flask
|
||||
, gevent
|
||||
, inflection
|
||||
, jsonschema
|
||||
, mock
|
||||
, openapi-spec-validator
|
||||
, pathlib
|
||||
, pytest
|
||||
, pytest-aiohttp
|
||||
, pytestcov
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, pyyaml
|
||||
, requests
|
||||
, six
|
||||
, swagger-ui-bundle
|
||||
, testfixtures
|
||||
, typing ? null
|
||||
, ujson
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "connexion";
|
||||
version = "2.4.0";
|
||||
version = "2.7.0";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
# we're fetching from GitHub because tests weren't distributed on PyPi
|
||||
src = fetchFromGitHub {
|
||||
owner = "zalando";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1b9q027wrks0afl7l3a1wxymz3aick26b9fq2m07pc5wb9np0vvg";
|
||||
sha256 = "15iflq5403diwda6n6qrpq67wkdcvl3vs0gsg0fapxqnq3a2m7jj";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
decorator
|
||||
mock
|
||||
pytest
|
||||
pytestcov
|
||||
testfixtures
|
||||
flask
|
||||
swagger-ui-bundle
|
||||
]
|
||||
++ lib.optionals isPy3k [ aiohttp aiohttp-jinja2 aiohttp-swagger ujson pytest-aiohttp ]
|
||||
++ lib.optional (pythonOlder "3.7") glibcLocales
|
||||
;
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
aiohttp-jinja2
|
||||
aiohttp-swagger
|
||||
clickclick
|
||||
flask
|
||||
inflection
|
||||
jsonschema
|
||||
openapi-spec-validator
|
||||
pyyaml
|
||||
requests
|
||||
six
|
||||
inflection
|
||||
openapi-spec-validator
|
||||
swagger-ui-bundle
|
||||
flask
|
||||
]
|
||||
++ lib.optional (pythonOlder "3.4") pathlib
|
||||
++ lib.optional (pythonOlder "3.6") typing
|
||||
++ lib.optionals isPy3k [ aiohttp aiohttp-jinja2 aiohttp-swagger ujson ]
|
||||
;
|
||||
];
|
||||
|
||||
preConfigure = lib.optional (pythonOlder "3.7") ''
|
||||
export LANG=en_US.UTF-8
|
||||
'';
|
||||
checkInputs = [
|
||||
aiohttp-remotes
|
||||
decorator
|
||||
pytest-aiohttp
|
||||
pytestCheckHook
|
||||
testfixtures
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py --replace "'aiohttp>=2.3.10,<3.5.2'" "'aiohttp>=2.3.10'"
|
||||
'';
|
||||
|
||||
checkPhase = if isPy3k then ''
|
||||
pytest -k "not test_app_get_root_path and \
|
||||
not test_verify_oauth_scopes_remote and \
|
||||
not test_verify_oauth_scopes_local and \
|
||||
not test_run_with_aiohttp_not_installed"''
|
||||
else "pytest --ignore=tests/aiohttp";
|
||||
pythonImportsCheck = [ "connexion" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Swagger/OpenAPI First framework on top of Flask";
|
||||
|
||||
@@ -1,6 +1,11 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
|
||||
, tatsu, arrow
|
||||
, pytestCheckHook, pytest-flakes
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
, tatsu
|
||||
, arrow
|
||||
, pytestCheckHook
|
||||
, pytest-flakes
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@@ -9,21 +14,35 @@ buildPythonPackage rec {
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "C4ptainCrunch";
|
||||
repo = "ics.py";
|
||||
owner = "ics-py";
|
||||
repo = "ics-py";
|
||||
rev = "v${version}";
|
||||
sha256 = "0rrdc9rcxc3ys6rml81b8m8qdlisk78a34bdib0wy65hlkmyyykn";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ tatsu arrow ];
|
||||
propagatedBuildInputs = [
|
||||
arrow
|
||||
tatsu
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytest-flakes
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
# 0.8 will move to python-dateutil
|
||||
substituteInPlace requirements.txt \
|
||||
--replace "arrow>=0.11,<0.15" "arrow"
|
||||
substituteInPlace setup.cfg --replace "--pep8" ""
|
||||
'';
|
||||
|
||||
checkInputs = [ pytestCheckHook pytest-flakes ];
|
||||
disabledTests = [
|
||||
# Failure seems to be related to arrow > 1.0
|
||||
"test_event"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "ics" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Pythonic and easy iCalendar library (RFC 5545)";
|
||||
@@ -32,9 +51,8 @@ buildPythonPackage rec {
|
||||
write ics data in a developer friendly way.
|
||||
'';
|
||||
homepage = "http://icspy.readthedocs.org/en/stable/";
|
||||
changelog = "https://github.com/C4ptainCrunch/ics.py/releases/tag/v${version}";
|
||||
changelog = "https://github.com/ics-py/ics-py/releases/tag/v${version}";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ primeos ];
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
@@ -35,10 +35,16 @@ in buildPythonPackage rec {
|
||||
export BOOST_PYTHON_LIB="boost_python${pythonVersion}"
|
||||
export BOOST_THREAD_LIB="boost_thread"
|
||||
export BOOST_SYSTEM_LIB="boost_system"
|
||||
export PYCAIRO=true
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
mapnik # for mapnik_config
|
||||
pkgs.pkgconfig
|
||||
];
|
||||
|
||||
patches = [
|
||||
./find-pycairo-with-pkg-config.patch
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
diff --git a/setup.py b/setup.py
|
||||
index 82a31d733..1c876a553 100755
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -228,10 +228,9 @@ extra_comp_args = list(filter(lambda arg: arg != "-fvisibility=hidden", extra_co
|
||||
if os.environ.get("PYCAIRO", "false") == "true":
|
||||
try:
|
||||
extra_comp_args.append('-DHAVE_PYCAIRO')
|
||||
- print("-I%s/include/pycairo".format(sys.exec_prefix))
|
||||
- extra_comp_args.append("-I{0}/include/pycairo".format(sys.exec_prefix))
|
||||
- #extra_comp_args.extend(check_output(["pkg-config", '--cflags', 'pycairo']).strip().split(' '))
|
||||
- #linkflags.extend(check_output(["pkg-config", '--libs', 'pycairo']).strip().split(' '))
|
||||
+ pycairo_name = 'py3cairo' if PYTHON3 else 'pycairo'
|
||||
+ extra_comp_args.extend(check_output(["pkg-config", '--cflags', pycairo_name]).strip().split(' '))
|
||||
+ linkflags.extend(check_output(["pkg-config", '--libs', pycairo_name]).strip().split(' '))
|
||||
except:
|
||||
raise Exception("Failed to find compiler options for pycairo")
|
||||
|
||||
@@ -18,7 +18,7 @@ let
|
||||
pyVerNoDot = builtins.replaceStrings [ "." ] [ "" ] python.pythonVersion;
|
||||
srcs = import ./binary-hashes.nix version;
|
||||
unsupported = throw "Unsupported system";
|
||||
version = "1.8.0";
|
||||
version = "1.8.1";
|
||||
in buildPythonPackage {
|
||||
inherit version;
|
||||
|
||||
@@ -64,6 +64,7 @@ in buildPythonPackage {
|
||||
meta = with lib; {
|
||||
description = "Open source, prototype-to-production deep learning platform";
|
||||
homepage = "https://pytorch.org/";
|
||||
changelog = "https://github.com/pytorch/pytorch/releases/tag/v${version}";
|
||||
license = licenses.unfree; # Includes CUDA and Intel MKL.
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ danieldk ];
|
||||
|
||||
@@ -1,14 +1,17 @@
|
||||
version: {
|
||||
x86_64-linux-37 = {
|
||||
url = "https://download.pytorch.org/whl/cu102/torch-${version}-cp37-cp37m-linux_x86_64.whl";
|
||||
hash = "sha256-bs29RJS0vy0xok3fvf8yvZlTibyGYqRUvUDT6M4gKQc=";
|
||||
name = "torch-${version}-cp37-cp37m-linux_x86_64.whl";
|
||||
url = "https://download.pytorch.org/whl/cu102/torch-${version}%2Bcu102-cp37-cp37m-linux_x86_64.whl";
|
||||
hash = "sha256-79JK2gGlV5Lhbim7GgPCjk++brwpUQE7g7vsrBu06eE=";
|
||||
};
|
||||
x86_64-linux-38 = {
|
||||
url = "https://download.pytorch.org/whl/cu102/torch-${version}-cp38-cp38-linux_x86_64.whl";
|
||||
hash = "sha256-+h45HMo5N9Xeox8xoagKAb1KgGLAOUSMJUu/WljrB4c=";
|
||||
name = "torch-${version}-cp38-cp38-linux_x86_64.whl";
|
||||
url = "https://download.pytorch.org/whl/cu102/torch-${version}%2Bcu102-cp38-cp38-linux_x86_64.whl";
|
||||
hash = "sha256-16h90SdxAgFxmPpgUPA3rBGxs9dtFaCeAgeSpKmtnmQ=";
|
||||
};
|
||||
x86_64-linux-39 = {
|
||||
url = "https://download.pytorch.org/whl/cu102/torch-${version}-cp39-cp39-linux_x86_64.whl";
|
||||
hash = "sha256-Ixj6yGCuc9xkhsDeIiNnTZ72E5/HXxV68r+Nzk/KVSQ=";
|
||||
name = "torch-${version}-cp39-cp39-linux_x86_64.whl";
|
||||
url = "https://download.pytorch.org/whl/cu102/torch-${version}%2Bcu102-cp39-cp39-linux_x86_64.whl";
|
||||
hash = "sha256-E3RLWpGYbRuKsz0pQv7npmC7WTbdvlYFaxXQYBKT2/8=";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user