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

32 lines
587 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
2017-05-21 10:21:14 +02:00
, fetchFromGitHub
2017-05-18 11:16:40 +02:00
, chardet
2017-05-21 10:21:14 +02:00
, nose
2017-05-18 11:16:40 +02:00
}:
buildPythonPackage rec {
pname = "pysrt";
2020-01-28 04:01:28 +01:00
version = "1.1.2";
2017-05-18 11:16:40 +02:00
2017-05-21 10:21:14 +02:00
src = fetchFromGitHub {
owner = "byroot";
repo = "pysrt";
rev = "v${version}";
2020-01-28 04:01:28 +01:00
sha256 = "1f5hxyzlh5mdvvi52qapys9qcinffr6ghgivb6k4jxa92cbs3mfg";
2017-05-18 11:16:40 +02:00
};
checkInputs = [ nose ];
2017-05-21 10:21:14 +02:00
checkPhase = ''
nosetests -v
'';
2017-05-18 11:16:40 +02:00
propagatedBuildInputs = [ chardet ];
meta = with lib; {
homepage = "https://github.com/byroot/pysrt";
2017-05-18 11:16:40 +02:00
license = licenses.gpl3;
description = "Python library used to edit or create SubRip files";
};
}