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

Commits on Nov 30, 2020

  1. Copy the full SHA
    4ba9955 View commit details

Commits on Dec 4, 2020

  1. Merge pull request #105448 from SuperSandro2000/uvicorn-darwin

    pythonPackages.uvicorn: Disable hanging tests on Darwin
    SuperSandro2000 authored Dec 4, 2020
    Copy the full SHA
    4b634e7 View commit details
Showing with 5 additions and 2 deletions.
  1. +5 −2 pkgs/development/python-modules/uvicorn/default.nix
7 changes: 5 additions & 2 deletions pkgs/development/python-modules/uvicorn/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib
{ stdenv
, buildPythonPackage
, fetchFromGitHub
, click
@@ -40,12 +40,15 @@ buildPythonPackage rec {
'';

checkInputs = [ pytest requests ];

doCheck = !stdenv.isDarwin;

# watchgod required the watchgod package, which isn't available in nixpkgs
checkPhase = ''
pytest --ignore=tests/supervisors/test_watchgodreload.py
'';

meta = with lib; {
meta = with stdenv.lib; {
homepage = "https://www.uvicorn.org/";
description = "The lightning-fast ASGI server";
license = licenses.bsd3;