Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 90a28c8ec143
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 36e6c2888aa7
Choose a head ref
  • 4 commits
  • 4 files changed
  • 1 contributor

Commits on Apr 15, 2021

  1. Copy the full SHA
    c7fc194 View commit details
  2. Copy the full SHA
    a812d1b View commit details
  3. python3Packages.tensorboardx: fix build

    Adds missing optional soundfile dependency, that was ultimately
    required during tests.
    
    Move crc32 into propagatedBuildInputs.
    
    Both changes were recommended here:
    https://github.com/lanpa/tensorboardX/blob/v2.1/README.md#install
    
    Clean up the package, disable linting tests.
    mweinelt committed Apr 15, 2021
    Copy the full SHA
    f29e513 View commit details
  4. python3Packages.twine: rely on importlib-metadata unconditionally

    Changed from conditional to unconditional in
    pypa/twine@22aaa04
    mweinelt committed Apr 15, 2021
    Copy the full SHA
    36e6c28 View commit details
3 changes: 3 additions & 0 deletions pkgs/development/python-modules/cfn-lint/default.nix
Original file line number Diff line number Diff line change
@@ -67,6 +67,9 @@ buildPythonPackage rec {
"TestQuickStartTemplates"
# requires git directory
"test_update_docs"
# Tests depend on network access (fails in getaddrinfo)
"test_update_resource_specs_python_2"
"test_update_resource_specs_python_3"
];

pythonImportsCheck = [
3 changes: 2 additions & 1 deletion pkgs/development/python-modules/moto/default.nix
Original file line number Diff line number Diff line change
@@ -37,7 +37,8 @@ buildPythonPackage rec {

postPatch = ''
substituteInPlace setup.py \
--replace "ecdsa<0.15" "ecdsa"
--replace "ecdsa<0.15" "ecdsa" \
--replace "idna<3,>=2.5" "idna" \
'';

patches = [
60 changes: 49 additions & 11 deletions pkgs/development/python-modules/tensorboardx/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
{ boto3, buildPythonPackage, crc32c, fetchFromGitHub, lib, matplotlib, moto
, numpy, pillow, pytorch, protobuf, six, pytestCheckHook
, tensorflow-tensorboard, torchvision }:
{ boto3
, buildPythonPackage
, crc32c
, fetchFromGitHub
, lib
, matplotlib
, moto
, numpy
, pillow
, protobuf
, pytestCheckHook
, pytorch
, six
, soundfile
, tensorflow-tensorboard
, torchvision
}:

buildPythonPackage rec {
pname = "tensorboardx";
@@ -13,19 +27,43 @@ buildPythonPackage rec {
sha256 = "1palz91y0b39pcmwg6wdmqfal38hai99dd6r88i3imqxdbmjghih";
};

checkInputs = [
pytestCheckHook boto3 crc32c matplotlib moto pillow pytorch tensorflow-tensorboard torchvision
];

propagatedBuildInputs = [ numpy protobuf six ];

# apparently torch API changed a bit at 1.6
postPatch = ''
substituteInPlace tensorboardX/pytorch_graph.py --replace "torch.onnx.set_training(model, False)" "torch.onnx.select_model_mode_for_export(model, torch.onnx.TrainingMode.EVAL)"
substituteInPlace tensorboardX/pytorch_graph.py --replace \
"torch.onnx.set_training(model, False)" \
"torch.onnx.select_model_mode_for_export(model, torch.onnx.TrainingMode.EVAL)"
'';

propagatedBuildInputs = [
crc32c
numpy
protobuf
six
soundfile
];

disabledTests = [ "test_TorchVis" "test_onnx_graph" ];
checkInputs = [
boto3
matplotlib
moto
pillow
pytestCheckHook
pytorch
tensorflow-tensorboard
torchvision
];

disabledTests = [
# ImportError: Visdom visualization requires installation of Visdom
"test_TorchVis"
# Requires network access (FileNotFoundError: [Errno 2] No such file or directory: 'wget')
"test_onnx_graph"
];

disabledTestPaths = [
# we are not interested in linting errors
"tests/test_lint.py"
];

meta = with lib; {
description = "Library for writing tensorboard-compatible logs";
3 changes: 2 additions & 1 deletion pkgs/development/python-modules/twine/default.nix
Original file line number Diff line number Diff line change
@@ -24,6 +24,7 @@ buildPythonPackage rec {

nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [
importlib-metadata
keyring
pkginfo
pyblake2
@@ -33,7 +34,7 @@ buildPythonPackage rec {
tqdm
colorama
rfc3986
] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
];

# Requires network
doCheck = false;