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