enzyme: init at 0.4.1

This commit is contained in:
Unai Zalakain 2017-05-18 10:53:35 +02:00
parent afec912d81
commit d501166f31
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, fetchurl, buildPythonPackage }:
buildPythonPackage rec {
name = "enzyme-${version}";
version = "0.4.1";
# Tests rely on files obtained over the network
doCheck = false;
src = fetchurl {
url = "mirror://pypi/e/enzyme/${name}.tar.gz";
sha256 = "1fv2kh2v4lwj0hhrhj9pib1pdjh01yr4xgyljhx11l94gjlpy5pj";
};
meta = {
homepage = https://github.com/Diaoul/enzyme;
license = with stdenv.lib; licenses.asl20;
description = "Python video metadata parser";
};
}

View file

@ -6471,6 +6471,8 @@ in {
propagatedBuildInputs = with self; [ configparser ];
};
enzyme = callPackage ../development/python-modules/enzyme {};
escapism = buildPythonPackage rec {
name = "escapism-${version}";
version = "0.0.1";