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: c27460fc5b30
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c985dd737e2c
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Dec 10, 2019

  1. python3Packages.jupyter-repo2docker: fix build

    Jonathan Ringer committed Dec 10, 2019
    Copy the full SHA
    c985dd7 View commit details
Showing with 25 additions and 13 deletions.
  1. +25 −13 pkgs/development/python-modules/jupyter-repo2docker/default.nix
38 changes: 25 additions & 13 deletions pkgs/development/python-modules/jupyter-repo2docker/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pkgs-docker
{ stdenv, buildPythonPackage, fetchPypi, pythonAtLeast
, docker
, traitlets
, python-json-logger
, escapism
, jinja2
, ruamel_yaml
, pkgs-docker
, python-json-logger
, pyyaml
, pytest
, wheel
, pytestcov
, pythonAtLeast
, ruamel_yaml
, semver
, toml
, traitlets
}:

buildPythonPackage rec {
@@ -25,12 +21,28 @@ buildPythonPackage rec {
sha256 = "7965262913be6be60e64c8016f5f3d4bf93701f2787209215859d73b2adbc05a";
};

checkInputs = [ pytest pyyaml wheel pytestcov ];
propagatedBuildInputs = [ pkgs-docker docker traitlets python-json-logger escapism jinja2 ruamel_yaml ];
propagatedBuildInputs = [
docker
escapism
jinja2
pkgs-docker
python-json-logger
ruamel_yaml
semver
toml
traitlets
];

# tests not packaged with pypi release
doCheck = false;

pythonImportsCheck = [
"repo2docker"
"repo2docker.app"
"repo2docker.utils"
"repo2docker.contentproviders.base"
];

meta = with stdenv.lib; {
homepage = https://repo2docker.readthedocs.io/en/latest/;
description = "Repo2docker: Turn code repositories into Jupyter enabled Docker Images";