My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/enzyme/default.nix

20 lines
459 B

{ lib, 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 = with lib; {
homepage = "https://github.com/Diaoul/enzyme";
license = licenses.asl20;
description = "Python video metadata parser";
};
}