2021-01-23 16:29:22 -08:00
|
|
|
{ lib, fetchPypi, buildPythonPackage }:
|
2017-05-18 01:53:35 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-21 06:38:27 -07:00
|
|
|
pname = "enzyme";
|
2017-05-18 01:53:35 -07:00
|
|
|
version = "0.4.1";
|
|
|
|
|
|
|
|
# Tests rely on files obtained over the network
|
|
|
|
doCheck = false;
|
|
|
|
|
2017-05-21 06:38:27 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-05-18 01:53:35 -07:00
|
|
|
sha256 = "1fv2kh2v4lwj0hhrhj9pib1pdjh01yr4xgyljhx11l94gjlpy5pj";
|
|
|
|
};
|
|
|
|
|
2021-01-23 16:29:22 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/Diaoul/enzyme";
|
2021-01-23 16:29:22 -08:00
|
|
|
license = licenses.asl20;
|
2017-05-18 01:53:35 -07:00
|
|
|
description = "Python video metadata parser";
|
|
|
|
};
|
|
|
|
}
|