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

32 lines
595 B
Nix
Raw Normal View History

2017-05-18 11:16:40 +02:00
{ stdenv
, 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";
2017-05-18 11:16:40 +02:00
version = "1.1.1";
2017-05-21 10:21:14 +02:00
src = fetchFromGitHub {
owner = "byroot";
repo = "pysrt";
rev = "v${version}";
sha256 = "0rwjaf26885vxhxnas5d8zwasvj7x88y4y2pdivjd4vdcpqrqdjn";
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 stdenv.lib; {
homepage = https://github.com/byroot/pysrt;
license = licenses.gpl3;
description = "Python library used to edit or create SubRip files";
};
}