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

Commits on Oct 16, 2020

  1. python37Packages.mongoengine: 0.18.2 -> 0.20.0

    r-ryantm authored and Jon committed Oct 16, 2020

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    2f4b077 View commit details
  2. python2Packages.mongoengine: disable

    ```
      Processing ./mongoengine-0.20.0-py2-none-any.whl
      ERROR: Package 'mongoengine' requires a different Python: 2.7.18 not in '>=3.5'
    ```
    Jonathan Ringer committed Oct 16, 2020
    Copy the full SHA
    a643f83 View commit details
Showing with 4 additions and 2 deletions.
  1. +4 −2 pkgs/development/python-modules/mongoengine/default.nix
6 changes: 4 additions & 2 deletions pkgs/development/python-modules/mongoengine/default.nix
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, pymongo
, isPy27
, six
, blinker
, nose
@@ -11,13 +12,14 @@

buildPythonPackage rec {
pname = "mongoengine";
version = "0.18.2";
version = "0.20.0";
disabled = isPy27;

src = fetchFromGitHub {
owner = "MongoEngine";
repo = pname;
rev = "v${version}";
sha256 = "0gx091h9rcykdj233srrl3dfc0ly52p6r4qc9ah6z0f694kmqj1v";
sha256 = "0wc0cvjanlszn09n61jj38pq9wdlphkjgrp3c8hvd16754is3n7f";
};

propagatedBuildInputs = [