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

Commits on Nov 20, 2020

  1. python27Packages.elasticsearch-dsl: 7.2.1 -> 7.3.0

    r-ryantm authored and Jonathan Ringer committed Nov 20, 2020
    Copy the full SHA
    8b374c3 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/elasticsearch-dsl/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/elasticsearch-dsl/default.nix
Original file line number Diff line number Diff line change
@@ -10,11 +10,11 @@

buildPythonPackage rec {
pname = "elasticsearch-dsl";
version = "7.2.1";
version = "7.3.0";

src = fetchPypi {
inherit pname version;
sha256 = "1e345535164cb684de4b825e1d0daf81b75554b30d3905446584a9e4af0cc3e7";
sha256 = "0ed75f6ff037e36b2397a8e92cae0ddde79b83adc70a154b8946064cb62f7301";
};

propagatedBuildInputs = [ elasticsearch python-dateutil six ]