at master 534 B view raw
1{ 2 lib, 3 fetchPypi, 4 buildPythonPackage, 5 setuptools, 6}: 7 8buildPythonPackage rec { 9 pname = "enzyme"; 10 version = "0.5.2"; 11 pyproject = true; 12 13 # Tests rely on files obtained over the network 14 doCheck = false; 15 16 src = fetchPypi { 17 inherit pname version; 18 hash = "sha256-fPd5FI2eZusoOGA+rOFAxTw878i4/l1NWgOl+11Xs8E="; 19 }; 20 21 nativeBuildInputs = [ setuptools ]; 22 23 meta = with lib; { 24 homepage = "https://github.com/Diaoul/enzyme"; 25 license = licenses.mit; 26 description = "Python video metadata parser"; 27 }; 28}