From 1d571e614d993bf747fff7c5211d50315744de94 Mon Sep 17 00:00:00 2001 From: tv Date: Sat, 5 Mar 2022 08:53:22 +0100 Subject: tv nix-prefetch-github: rip --- tv/5pkgs/override/default.nix | 2 -- tv/5pkgs/override/nix-prefetch-github.nix | 47 ------------------------------- 2 files changed, 49 deletions(-) delete mode 100644 tv/5pkgs/override/nix-prefetch-github.nix (limited to 'tv') diff --git a/tv/5pkgs/override/default.nix b/tv/5pkgs/override/default.nix index 4fb2e806..9d06e106 100644 --- a/tv/5pkgs/override/default.nix +++ b/tv/5pkgs/override/default.nix @@ -19,6 +19,4 @@ self: super: { outputHashMode = null; }); - nix-prefetch-github = - self.python3Packages.callPackage ./nix-prefetch-github.nix {}; } diff --git a/tv/5pkgs/override/nix-prefetch-github.nix b/tv/5pkgs/override/nix-prefetch-github.nix deleted file mode 100644 index 67873f92..00000000 --- a/tv/5pkgs/override/nix-prefetch-github.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ fetchPypi -, lib -, buildPythonPackage -, pythonOlder -, attrs -, click -, effect -, jinja2 -, git -, pytestCheckHook -, pytest-black -, pytestcov -, pytest-isort -}: - -buildPythonPackage rec { - pname = "nix-prefetch-github"; - version = "3.0"; - - src = fetchPypi { - inherit pname version; - sha256 = "sha256-EN+EbVXUaf+id5UsK4EBm/9k9FYaH79g08kblvW60XA="; - }; - - propagatedBuildInputs = [ - attrs - click - effect - jinja2 - ]; - - checkInputs = [ pytestCheckHook pytest-black pytestcov pytest-isort git ]; - checkPhase = '' - pytest -m 'not network' - ''; - - # latest version of isort will cause tests to fail - # ignore tests which are impure - disabledTests = [ "isort" "life" "outputs" "fetch_submodules" ]; - - meta = with lib; { - description = "Prefetch sources from github"; - homepage = "https://github.com/seppeljordan/nix-prefetch-github"; - license = licenses.gpl3; - maintainers = with maintainers; [ seppeljordan ]; - }; -} -- cgit v1.2.3