summary refs log tree commit diff
path: root/pkgs/development/python-modules/tvnamer/default.nix
diff options
context:
space:
mode:
authorCarsten Burstedde <burstedde@ins.uni-bonn.de>2021-07-05 19:30:59 +0200
committerCarsten Burstedde <burstedde@ins.uni-bonn.de>2021-07-05 19:30:59 +0200
commit705afbd338e26b486aaacc237ee4fffbf9759b21 (patch)
tree5c69ce5ff8d77f023b12dcbea6b6d3a4d68e982b /pkgs/development/python-modules/tvnamer/default.nix
parentc99a5b9a60ae5c5204a3f41f5d65b642093d1b82 (diff)
parent94982e6f874ec52eaf3fed29c8d229cdc1f8bc2c (diff)
downloadnixpkgs-705afbd338e26b486aaacc237ee4fffbf9759b21.tar
nixpkgs-705afbd338e26b486aaacc237ee4fffbf9759b21.tar.gz
nixpkgs-705afbd338e26b486aaacc237ee4fffbf9759b21.tar.bz2
nixpkgs-705afbd338e26b486aaacc237ee4fffbf9759b21.tar.lz
nixpkgs-705afbd338e26b486aaacc237ee4fffbf9759b21.tar.xz
nixpkgs-705afbd338e26b486aaacc237ee4fffbf9759b21.tar.zst
nixpkgs-705afbd338e26b486aaacc237ee4fffbf9759b21.zip
Merge branch 'master' into package-petsc-p4est
Diffstat (limited to 'pkgs/development/python-modules/tvnamer/default.nix')
-rw-r--r--pkgs/development/python-modules/tvnamer/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/development/python-modules/tvnamer/default.nix b/pkgs/development/python-modules/tvnamer/default.nix
deleted file mode 100644
index a9439d3e887..00000000000
--- a/pkgs/development/python-modules/tvnamer/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, pytest
-, tvdb_api
-}:
-
-buildPythonPackage rec {
-  pname = "tvnamer";
-  version = "3.0.4";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "dc2ea8188df6ac56439343630466b874c57756dd0b2538dd8e7905048f425f04";
-  };
-
-  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 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 ];
-  };
-
-}