Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchPypi, 4 buildPythonPackage, 5}: 6 7buildPythonPackage rec { 8 pname = "enzyme"; 9 version = "0.4.1"; 10 format = "setuptools"; 11 12 # Tests rely on files obtained over the network 13 doCheck = false; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "1fv2kh2v4lwj0hhrhj9pib1pdjh01yr4xgyljhx11l94gjlpy5pj"; 18 }; 19 20 meta = with lib; { 21 homepage = "https://github.com/Diaoul/enzyme"; 22 license = licenses.asl20; 23 description = "Python video metadata parser"; 24 }; 25}