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

Commits on Jan 21, 2020

  1. pythonPackages.nest-asyncio: build without tests

    Tests fail on v1.2.1 & old v1.2.0.
    This disables the tests to allow this package to build.
    There doesn't seem to be an easy fix to allow running tests, b/c
    the GitHub repo doesn't have release tags.
    drewrisinger authored and Jon committed Jan 21, 2020
    Copy the full SHA
    338c151 View commit details
Showing with 5 additions and 0 deletions.
  1. +5 −0 pkgs/development/python-modules/nest-asyncio/default.nix
5 changes: 5 additions & 0 deletions pkgs/development/python-modules/nest-asyncio/default.nix
Original file line number Diff line number Diff line change
@@ -14,6 +14,11 @@ buildPythonPackage rec {
sha256 = "7d4d7c1ca2aad0e5c2706d0222c8ff006805abfd05caa97e6127c8811d0f6adc";
};

# tests not packaged with source dist as of 1.2.1/1.2.2, and
# can't check tests out of GitHub easily without specific commit IDs (no tagged releases)
doCheck = false;
pythonImportsCheck = [ "nest_asyncio" ];

meta = with stdenv.lib; {
homepage = https://github.com/erdewit/nest_asyncio;
description = "Patch asyncio to allow nested event loops";