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