depot/third_party/nixpkgs/pkgs/development/python-modules/enzyme/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

20 lines
469 B
Nix

{ stdenv, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "enzyme";
version = "0.4.1";
# Tests rely on files obtained over the network
doCheck = false;
src = fetchPypi {
inherit pname version;
sha256 = "1fv2kh2v4lwj0hhrhj9pib1pdjh01yr4xgyljhx11l94gjlpy5pj";
};
meta = {
homepage = "https://github.com/Diaoul/enzyme";
license = with stdenv.lib; licenses.asl20;
description = "Python video metadata parser";
};
}