nixpkgs/pkgs/development/python-modules/enzyme/default.nix

21 lines
469 B
Nix
Raw Normal View History

2017-05-21 13:38:27 +00:00
{ stdenv, fetchPypi, buildPythonPackage }:
2017-05-18 08:53:35 +00:00
buildPythonPackage rec {
2017-05-21 13:38:27 +00:00
pname = "enzyme";
2017-05-18 08:53:35 +00:00
version = "0.4.1";
# Tests rely on files obtained over the network
doCheck = false;
2017-05-21 13:38:27 +00:00
src = fetchPypi {
inherit pname version;
2017-05-18 08:53:35 +00:00
sha256 = "1fv2kh2v4lwj0hhrhj9pib1pdjh01yr4xgyljhx11l94gjlpy5pj";
};
meta = {
homepage = "https://github.com/Diaoul/enzyme";
2017-05-18 08:53:35 +00:00
license = with stdenv.lib; licenses.asl20;
description = "Python video metadata parser";
};
}