mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
39 lines
790 B
Nix
39 lines
790 B
Nix
{
|
|
python,
|
|
fetchPypi,
|
|
lib,
|
|
pymeta3,
|
|
buildPythonPackage,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "pybars3";
|
|
version = "0.9.7";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-ashH6QXlO5xbk2rxEskQR14nv3Z/efRSjBb5rx7A4lI=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pymeta3 ];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
${python.interpreter} tests.py
|
|
runHook postCheck
|
|
'';
|
|
|
|
pythonImportsCheck = [ "pybars" ];
|
|
|
|
meta = with lib; {
|
|
description = "Handlebars.js template support for Python 3 and 2";
|
|
homepage = "https://github.com/wbond/pybars3";
|
|
changelog = "https://github.com/wbond/pybars3/releases/tag/${version}";
|
|
license = licenses.lgpl3Only;
|
|
maintainers = with maintainers; [
|
|
jfly
|
|
matusf
|
|
];
|
|
};
|
|
}
|