mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 02:23:54 +00:00
aed0db11ba
Note the license change: https://github.com/Diaoul/enzyme/pull/37/files#diff-c693279643b8cd5d248172d9c22cb7cf4ed163a3c98c8a3f69c2717edd3eacb7
29 lines
534 B
Nix
29 lines
534 B
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "enzyme";
|
|
version = "0.5.2";
|
|
pyproject = true;
|
|
|
|
# Tests rely on files obtained over the network
|
|
doCheck = false;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-fPd5FI2eZusoOGA+rOFAxTw878i4/l1NWgOl+11Xs8E=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Diaoul/enzyme";
|
|
license = licenses.mit;
|
|
description = "Python video metadata parser";
|
|
};
|
|
}
|