File tree 1 file changed +17
-4
lines changed
pkgs/development/python-modules/pypugjs
1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change 6
6
fetchFromGitHub ,
7
7
jinja2 ,
8
8
mako ,
9
+ poetry-core ,
9
10
pyramid ,
10
11
pyramid-mako ,
11
12
pytestCheckHook ,
15
16
16
17
buildPythonPackage rec {
17
18
pname = "pypugjs" ;
18
- version = "5.10.1 " ;
19
- format = "setuptools" ;
19
+ version = "5.12.0 " ;
20
+ pyproject = true ;
20
21
21
22
src = fetchFromGitHub {
22
23
owner = "kakulukia" ;
23
24
repo = "pypugjs" ;
24
25
tag = "v${ version } " ;
25
- hash = "sha256-W+EVNxT2OimNENHe4lJDn6Wm1EbBysGuCD3/Wkdew/U =" ;
26
+ hash = "sha256-JHZzyEilCjpZFIrl5kk1oJ4C/vgQTfVoRRGBK+DuHAE =" ;
26
27
} ;
27
28
28
- propagatedBuildInputs = [
29
+ build-system = [
30
+ poetry-core
31
+ ] ;
32
+
33
+ dependencies = [
29
34
six
30
35
charset-normalizer
31
36
] ;
32
37
38
+ pythonRelaxDeps = [
39
+ "charset-normalizer"
40
+ ] ;
41
+
33
42
nativeCheckInputs = [
34
43
django
35
44
jinja2
@@ -42,6 +51,10 @@ buildPythonPackage rec {
42
51
43
52
pytestCheckFlags = [ "pypugjs/testsuite" ] ;
44
53
54
+ pythonImportsCheck = [
55
+ "pypugjs"
56
+ ] ;
57
+
45
58
meta = with lib ; {
46
59
description = "PugJS syntax template adapter for Django, Jinja2, Mako and Tornado templates" ;
47
60
mainProgram = "pypugjs" ;
You can’t perform that action at this time.
0 commit comments