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

Commits on Oct 28, 2020

  1. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    235bf5a View commit details

Commits on Nov 26, 2020

  1. Merge pull request #101951 from IvarWithoutBones/disable-tmdb3-py3

    pythonPackages.tmdb3: disable on python3
    SuperSandro2000 authored Nov 26, 2020
    Copy the full SHA
    60efefa View commit details
Showing with 4 additions and 1 deletion.
  1. +4 −1 pkgs/development/python-modules/tmdb3/default.nix
5 changes: 4 additions & 1 deletion pkgs/development/python-modules/tmdb3/default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{ lib, buildPythonPackage, fetchPypi }:
{ lib, buildPythonPackage, fetchPypi, isPy3k }:

buildPythonPackage rec {
pname = "tmdb3";
version = "0.7.2";
disabled = isPy3k; # Upstream has not received any updates since 2015, and importing from python3 does not work.

src = fetchPypi {
inherit pname version;
@@ -12,6 +13,8 @@ buildPythonPackage rec {
# no tests implemented
doCheck = false;

pythonImportsCheck = [ "tmdb3" ];

meta = with lib; {
description = "Python implementation of the v3 API for TheMovieDB.org, allowing access to movie and cast information";
homepage = "https://pypi.python.org/pypi/tmdb3";