nixpkgs/pkgs/development/python-modules/staticjinja/default.nix
Francesco Gazzetta 274ee2df9a
staticjinja: 1.0.1 -> 2.1.0, add version test (#126690)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-06-15 03:01:10 +02:00

60 lines
1.1 KiB
Nix

{ lib
, fetchFromGitHub
, buildPythonPackage
, poetry
, docopt
, easywatch
, jinja2
, pytestCheckHook
, pytest-check
, markdown
, testVersion
, staticjinja
}:
buildPythonPackage rec {
pname = "staticjinja";
version = "2.1.0";
format = "pyproject";
# No tests in pypi
src = fetchFromGitHub {
owner = "staticjinja";
repo = pname;
rev = version;
sha256 = "sha256-VKsDvWEurBdckWbPG5hQLK3dzdM7XVbrp23fR5wp1xk=";
};
nativeBuildInputs = [
poetry
];
propagatedBuildInputs = [
jinja2
docopt
easywatch
];
checkInputs = [
pytestCheckHook
pytest-check
markdown
];
# The tests need to find and call the installed staticjinja executable
preCheck = ''
export PATH="$PATH:$out/bin";
'';
passthru.tests.version = testVersion {
package = staticjinja;
};
meta = with lib; {
description = "A library and cli tool that makes it easy to build static sites using Jinja2";
homepage = "https://staticjinja.readthedocs.io/en/latest/";
license = licenses.mit;
maintainers = with maintainers; [ fgaz ];
};
}