nixpkgs/pkgs/development/python-modules/tvdb_api/default.nix

32 lines
636 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, requests-cache
2019-03-05 15:11:48 +03:00
, pytest
}:
buildPythonPackage rec {
pname = "tvdb_api";
2018-11-04 13:35:19 +03:00
version = "2.0";
src = fetchPypi {
inherit pname version;
2018-11-04 13:35:19 +03:00
sha256 = "b1de28a5100121d91b1f6a8ec7e86f2c4bdf48fb22fab3c6fe21e7fb7346bf8f";
};
propagatedBuildInputs = [ requests-cache ];
2019-03-05 15:11:48 +03:00
checkInputs = [ pytest ];
# requires network access
doCheck = false;
meta = with stdenv.lib; {
2019-03-05 15:11:48 +03:00
description = "Simple to use TVDB (thetvdb.com) API in Python";
homepage = "https://github.com/dbr/tvdb_api";
license = licenses.unlicense;
maintainers = with maintainers; [ peterhoeg ];
};
}