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

Commits on Apr 7, 2020

  1. python37Packages.nest-asyncio: 1.3.0 -> 1.3.2

    r-ryantm authored and Jon committed Apr 7, 2020
    Copy the full SHA
    041c890 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/python-modules/nest-asyncio/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/nest-asyncio/default.nix
Original file line number Diff line number Diff line change
@@ -5,16 +5,16 @@
}:

buildPythonPackage rec {
version = "1.3.0";
version = "1.3.2";
pname = "nest_asyncio";
disabled = !(pythonAtLeast "3.5");

src = fetchPypi {
inherit pname version;
sha256 = "1cbd885n3sf4qg1dv3mk1ggr5ssk48yzrzssznr92dh53g04ly7g";
sha256 = "0l43k0lx7r6izancfhhg68x82mvws2di1a9w2y12l1a446vr9q8l";
};

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