biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / enzyme / default.nix
blob5d969858c00fb9bb0eaf0f754e7cfa70e3d0fa28
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   setuptools,
6 }:
8 buildPythonPackage rec {
9   pname = "enzyme";
10   version = "0.5.2";
11   pyproject = true;
13   # Tests rely on files obtained over the network
14   doCheck = false;
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-fPd5FI2eZusoOGA+rOFAxTw878i4/l1NWgOl+11Xs8E=";
19   };
21   nativeBuildInputs = [ setuptools ];
23   meta = with lib; {
24     homepage = "https://github.com/Diaoul/enzyme";
25     license = licenses.mit;
26     description = "Python video metadata parser";
27   };