lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.ttp-templates: 0.1.4 -> 0.3.1

+9 -5
+9 -5
pkgs/development/python-modules/ttp-templates/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , pythonOlder 5 + , poetry-core 5 6 }: 6 7 7 8 buildPythonPackage rec { 8 9 pname = "ttp-templates"; 9 - version = "0.1.4"; 10 - format = "setuptools"; 10 + version = "0.3.1"; 11 + format = "pyproject"; 11 12 12 13 disabled = pythonOlder "3.7"; 13 14 ··· 15 16 owner = "dmulyalin"; 16 17 repo = "ttp_templates"; 17 18 rev = "refs/tags/${version}"; 18 - hash = "sha256-yVDJAJXZU4pwvXSKRKUfSHqU23NcdgedOMmynMAD/Po="; 19 + hash = "sha256-35Ej76E9qy5EY41Jt2GDCldyXq7IkdqKxVFrBOJh9nE="; 19 20 }; 20 21 22 + nativeBuildInputs = [ 23 + poetry-core 24 + ]; 25 + 21 26 postPatch = '' 22 27 # Drop circular dependency on ttp 23 - substituteInPlace setup.py \ 24 - --replace '"ttp>=0.6.0"' "" 28 + sed -i '/ttp =/d' pyproject.toml 25 29 ''; 26 30 27 31 # Circular dependency on ttp