Merge pull request #25883 from unaizalakain/init-enzyme

enzyme: init at 0.4.1
This commit is contained in:
Jörg Thalheim 2017-05-21 14:39:20 +01:00 committed by GitHub
commit 6f447ed6cf
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ stdenv, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
name = "${pname}-${version}";
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";
};
}

View File

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