blob: 024be33d2cd381c68c6c31861df2643230073349 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
buildPythonPackage,
lib,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "pyparsebluray";
version = "0.1.4";
pyproject = true;
src = fetchFromGitHub {
owner = "Ichunjo";
repo = "pyparsebluray";
tag = finalAttrs.version;
hash = "sha256-9G+pf4kZnj5ZkJj8qmymqdxCRVUTfGy3m9iF5BjiCxM=";
};
build-system = [
setuptools
];
meta = {
description = "Parse and extract binary data from bluray files";
homepage = "https://github.com/Ichunjo/pyparsebluray";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ambroisie ];
};
})
|