depot/third_party/nixpkgs/pkgs/development/python-modules/pysrt/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

33 lines
643 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, chardet
, nose
}:
buildPythonPackage rec {
pname = "pysrt";
version = "1.1.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "byroot";
repo = "pysrt";
rev = "v${version}";
sha256 = "1f5hxyzlh5mdvvi52qapys9qcinffr6ghgivb6k4jxa92cbs3mfg";
};
nativeCheckInputs = [ nose ];
checkPhase = ''
nosetests -v
'';
propagatedBuildInputs = [ chardet ];
meta = with lib; {
homepage = "https://github.com/byroot/pysrt";
license = licenses.gpl3;
description = "Python library used to edit or create SubRip files";
mainProgram = "srt";
};
}