Merge pull request #146056 from r-ryantm/auto-update/python38Packages.ntc-templates

python38Packages.ntc-templates: 2.3.2 -> 3.0.0
This commit is contained in:
Fabian Affolter 2021-11-16 12:42:20 +01:00 committed by GitHub
commit fb91716333
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy27
, pythonOlder
, poetry-core
, textfsm
, pytestCheckHook
@ -11,15 +11,16 @@
buildPythonPackage rec {
pname = "ntc-templates";
version = "2.3.2";
version = "3.0.0";
format = "pyproject";
disabled = isPy27;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "networktocode";
repo = pname;
rev = "v${version}";
sha256 = "0sga86ajbh3a8wsb7q5mxzxhlg4fds8pr33ybjgi1sda4bvp2dvp";
sha256 = "0kijzmmvq2rw7ima19w7lyb2p26a5w52k70fzbkaqqw78qzw8178";
};
nativeBuildInputs = [