enzyme: init at 0.4.1
This commit is contained in:
parent
afec912d81
commit
d501166f31
20
pkgs/development/python-modules/enzyme/default.nix
Normal file
20
pkgs/development/python-modules/enzyme/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user