pytaglib: init at 1.4.3 (#39498)

This commit is contained in:
Mark Karpov 2018-04-26 23:19:52 +07:00 committed by Jörg Thalheim
parent 36aba09672
commit 2a4dc39e1e
3 changed files with 40 additions and 0 deletions

View file

@ -2521,6 +2521,11 @@
github = "fstamour";
name = "Francis St-Amour";
};
mrkkrp = {
email = "markkarpov92@gmail.com";
github = "mrkkrp";
name = "Mark Karpov";
};
mrVanDalo = {
email = "contact@ingolf-wagner.de";
github = "mrVanDalo";

View file

@ -0,0 +1,33 @@
{ lib
, buildPythonPackage
, fetchPypi
, taglib
, cython
, pytest
, glibcLocales
}:
buildPythonPackage rec {
pname = "pytaglib";
version = "1.4.3";
src = fetchPypi {
inherit pname version;
sha256 = "44ab26dc4b33962b8db0bb8856e7b166539c0c555bc933a6bbbc96f4ec51c7a2";
};
buildInputs = [ taglib cython ];
checkInputs = [ pytest glibcLocales ];
checkPhase = ''
LC_ALL=en_US.utf-8 pytest .
'';
meta = {
homepage = https://github.com/supermihi/pytaglib;
description = "Python 2.x/3.x bindings for the Taglib audio metadata library";
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.mrkkrp ];
};
}

View file

@ -8220,6 +8220,8 @@ in {
};
};
pytaglib = callPackage ../development/python-modules/pytaglib { };
pyte = callPackage ../development/python-modules/pyte { };
graphviz = buildPythonPackage rec {