pysrt: init at 1.1.1
This commit is contained in:
23
pkgs/development/python-modules/pysrt/default.nix
Normal file
23
pkgs/development/python-modules/pysrt/default.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ stdenv
|
||||
, buildPythonApplication
|
||||
, fetchurl
|
||||
, chardet
|
||||
}:
|
||||
|
||||
buildPythonApplication rec {
|
||||
name = "pysrt-${version}";
|
||||
version = "1.1.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/p/pysrt/${name}.tar.gz";
|
||||
sha256 = "1anhfilhamdv15w9mmzwc5a8fsri00ghkmcws4r5mz298m110k7v";
|
||||
};
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user