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

Commits on Nov 7, 2019

  1. python3Packages.todoist: 7.0.17 -> 8.1.1

    Derived from 997bd95
    (todoist: 8.1.0 -> 8.1.1). This backport is needed since Todoist changed
    several parts of their API, so 7.0.17 is unusable with todoist.com.
    
    For instance, when I do `todoist.sync()`, I get the following response:
    
    ```
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
    <title>410 Gone</title>
    <h1>Gone</h1>
    <p>This API endpoint is no longer available. Please refer to our documentation to upgrade your client to use the latest API version: https://developer.todoist.com</p>
    ```
    Ma27 committed Nov 7, 2019
    Copy the full SHA
    abb66c3 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/todoist/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/todoist/default.nix
Original file line number Diff line number Diff line change
@@ -3,11 +3,11 @@

buildPythonPackage rec {
pname = "todoist-python";
version = "7.0.17";
version = "8.1.1";

src = fetchPypi {
inherit pname version;
sha256 = "0gs4vlvvmkz627ybswj0l6m3c8dyrqgfqjlawbc8d9rkx88srkr2";
sha256 = "0khipf8v0gqvspq7m67aqv0ql3rdqyqr8qfhbm1szc1z6mygj8ns";
};

propagatedBuildInputs = [ requests ];