nixpkgs/pkgs/development/python-modules/pypugjs/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

51 lines
900 B
Nix

{ lib
, buildPythonPackage
, charset-normalizer
, django
, fetchFromGitHub
, jinja2
, mako
, nose
, pyramid
, pyramid_mako
, pytestCheckHook
, six
, tornado
}:
buildPythonPackage rec {
pname = "pypugjs";
version = "5.9.12";
src = fetchFromGitHub {
owner = "kakulukia";
repo = "pypugjs";
rev = "v${version}";
hash = "sha256-6tIhKCa8wg01gNFygCS6GdUHfbWBu7wOZeMkCExRR34=";
};
propagatedBuildInputs = [ six charset-normalizer ];
nativeCheckInputs = [
django
jinja2
mako
nose
tornado
pyramid
pyramid_mako
pytestCheckHook
];
pytestCheckFlags = [
"pypugjs/testsuite"
];
meta = with lib; {
description = "PugJS syntax template adapter for Django, Jinja2, Mako and Tornado templates";
homepage = "https://github.com/kakulukia/pypugjs";
license = licenses.mit;
maintainers = with maintainers; [ lopsided98 ];
};
}