31 lines
707 B
Nix
31 lines
707 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytest
|
|
, tvdb_api
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tvnamer";
|
|
version = "3.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "00ae7354dec9cca8e652139eba9cf6945371321cdf05ee903a6a59f6d31cef6b";
|
|
};
|
|
|
|
checkInputs = [ pytest ];
|
|
propagatedBuildInputs = [ tvdb_api ];
|
|
|
|
# a ton of tests fail with: IOError: tvnamer/main.py could not be found in . or ..
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Automatic TV episode file renamer, uses data from thetvdb.com via tvdb_api.";
|
|
homepage = "https://github.com/dbr/tvnamer";
|
|
license = licenses.unlicense;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
};
|
|
|
|
}
|