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

Commits on Feb 21, 2019

  1. octoprint: ignore version constraints

    Robert Schütz committed Feb 21, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    callahad Dan Callahan
    Copy the full SHA
    c335003 View commit details
  2. octoprint: fix tests

    Robert Schütz committed Feb 21, 2019
    Copy the full SHA
    080832f View commit details
Showing with 6 additions and 1 deletion.
  1. +6 −1 pkgs/applications/misc/octoprint/default.nix
7 changes: 6 additions & 1 deletion pkgs/applications/misc/octoprint/default.nix
Original file line number Diff line number Diff line change
@@ -32,14 +32,17 @@ let
"flask"
"future"
"futures"
"monotonic"
"pkginfo"
"psutil"
"pyserial"
"python-dateutil"
"requests"
"rsa"
"sarge"
"scandir"
"semantic_version"
"watchdog"
"websocket-client"
"werkzeug"
"wrapt"
@@ -75,7 +78,9 @@ in py.pkgs.buildPythonApplication rec {
setup.py
'';

checkPhase = "nosetests";
checkPhase = ''
HOME=$(mktemp -d) nosetests
'';

meta = with stdenv.lib; {
homepage = https://octoprint.org/;