linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pysrt / default.nix
blob1099bffc40f0a0b7445d8b3c197147da068959a5
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , chardet
5 , nose
6 }:
8 buildPythonPackage rec {
9   pname = "pysrt";
10   version = "1.1.2";
12   src = fetchFromGitHub {
13     owner = "byroot";
14     repo = "pysrt";
15     rev = "v${version}";
16     sha256 = "1f5hxyzlh5mdvvi52qapys9qcinffr6ghgivb6k4jxa92cbs3mfg";
17   };
19   checkInputs = [ nose ];
20   checkPhase = ''
21     nosetests -v
22   '';
24   propagatedBuildInputs = [ chardet ];
26   meta = with lib; {
27     homepage = "https://github.com/byroot/pysrt";
28     license = licenses.gpl3;
29     description = "Python library used to edit or create SubRip files";
30   };