lol

python31{1,2}Packages.enzyme: 0.4.1 -> 0.5.2

Note the license change:

https://github.com/Diaoul/enzyme/pull/37/files#diff-c693279643b8cd5d248172d9c22cb7cf4ed163a3c98c8a3f69c2717edd3eacb7

authored by

André Breda and committed by
Doron Behar
aed0db11 b0e55541

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