mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
pythonPackages.tvnamer: refactor move to python-modules
This commit is contained in:
parent
97b2d6790a
commit
6fd3323d26
2 changed files with 31 additions and 22 deletions
30
pkgs/development/python-modules/tvnamer/default.nix
Normal file
30
pkgs/development/python-modules/tvnamer/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytest
|
||||
, tvdb_api
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "tvnamer";
|
||||
version = "2.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "10iizmwna2xpyc2694hsrvny68y3bdq576p8kxsvg5gj2spnsxav";
|
||||
};
|
||||
|
||||
buildInputs = [ 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 ];
|
||||
};
|
||||
|
||||
}
|
|
@ -4595,28 +4595,7 @@ in {
|
|||
|
||||
tvdb_api = callPackage ../development/python-modules/tvdb_api { };
|
||||
|
||||
tvnamer = buildPythonPackage rec {
|
||||
name = "tvnamer-${version}";
|
||||
version = "2.4";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/t/tvnamer/${name}.tar.gz";
|
||||
sha256 = "10iizmwna2xpyc2694hsrvny68y3bdq576p8kxsvg5gj2spnsxav";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ pytest ];
|
||||
propagatedBuildInputs = with self; [ tvdb_api ];
|
||||
|
||||
# a ton of tests fail with: IOError: tvnamer/main.py could not be found in . or ..
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
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 ];
|
||||
};
|
||||
};
|
||||
tvnamer = callPackage ../development/python-modules/tvnamer { };
|
||||
|
||||
threadpool = buildPythonPackage rec {
|
||||
name = "threadpool-${version}";
|
||||
|
|
Loading…
Reference in a new issue