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

Commits on May 31, 2019

  1. python37Packages.eve: 0.8.1 -> 0.9

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/python3.7-eve/versions
    r-ryantm authored and marsam committed May 31, 2019
    Copy the full SHA
    14cf7cf View commit details
  2. Merge pull request #61896 from r-ryantm/auto-update/python3.7-Eve

    python37Packages.eve: 0.8.1 -> 0.9
    marsam authored May 31, 2019
    Copy the full SHA
    d0ad25a View commit details
Showing with 6 additions and 4 deletions.
  1. +6 −4 pkgs/development/python-modules/eve/default.nix
10 changes: 6 additions & 4 deletions pkgs/development/python-modules/eve/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ stdenv, buildPythonPackage, fetchPypi, flask, events
, pymongo, simplejson, cerberus }:
, pymongo, simplejson, cerberus, werkzeug }:

buildPythonPackage rec {
pname = "Eve";
version = "0.8.1";
version = "0.9";

src = fetchPypi {
inherit pname version;
sha256 = "88105080e8a2567a1a8d50a5cded0d7d95e95f704b310c8107ef2ff7696f5316";
sha256 = "18shfaxa1vqshnyiqx3jqsri2wxz9ibip3mdxaz8pljmk734r4b1";
};

propagatedBuildInputs = [
@@ -16,14 +16,16 @@ buildPythonPackage rec {
flask
pymongo
simplejson
werkzeug
];

# tests call a running mongodb instance
doCheck = false;

meta = with stdenv.lib; {
homepage = "http://python-eve.org/";
homepage = "https://python-eve.org/";
description = "Open source Python REST API framework designed for human beings";
license = licenses.bsd3;
maintainers = [ maintainers.marsam ];
};
}