Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / enzyme / default.nix
blob9e043782585fcce64de6167a8b265357f5fa97eb
1 { lib, fetchPypi, buildPythonPackage }:
3 buildPythonPackage rec {
4   pname = "enzyme";
5   version = "0.4.1";
6   format = "setuptools";
8   # Tests rely on files obtained over the network
9   doCheck = false;
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "1fv2kh2v4lwj0hhrhj9pib1pdjh01yr4xgyljhx11l94gjlpy5pj";
14   };
16   meta = with lib; {
17     homepage = "https://github.com/Diaoul/enzyme";
18     license = licenses.asl20;
19     description = "Python video metadata parser";
20   };