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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1012 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchFromGitHub, fetchpatch, requests, iso8601, bottle, pytestCheckHook }:
2019-11-25 08:18:52 +00:00
buildPythonPackage rec {
pname = "m3u8";
2021-11-19 20:01:06 +00:00
version = "0.9.0";
2019-11-25 08:18:52 +00:00
src = fetchFromGitHub {
owner = "globocom";
repo = pname;
rev = version;
2021-11-19 20:01:06 +00:00
sha256 = "sha256-EfHhmV2otEgEy2OVohS+DF7dk97GFdWZ4cFCERZBmlA=";
2019-11-25 08:18:52 +00:00
};
patches = [
# Fix hardcoded /tmp dir (fix build on Hydra)
(fetchpatch {
url = "https://github.com/globocom/m3u8/commit/cf7ae5fda4681efcea796cd7c51c02f152c36009.patch";
sha256 = "sha256-SEETpIJQddid8D//6DVrSGs/BqDeMOzufE0bBrm+/xY=";
})
];
2019-11-25 08:18:52 +00:00
propagatedBuildInputs = [ requests iso8601 ];
nativeCheckInputs = [ bottle pytestCheckHook ];
2021-11-19 20:01:06 +00:00
pytestFlagsArray = [
"tests/test_parser.py"
"tests/test_model.py"
"tests/test_variant_m3u8.py"
];
2019-11-25 08:18:52 +00:00
meta = with lib; {
homepage = "https://github.com/globocom/m3u8";
description = "Python m3u8 parser";
license = licenses.mit;
maintainers = with maintainers; [ Scriptkiddi ];
};
}