tv nix-prefetch-github: rip
This commit is contained in:
parent
e3785b22b2
commit
1d571e614d
@ -19,6 +19,4 @@ self: super: {
|
|||||||
outputHashMode = null;
|
outputHashMode = null;
|
||||||
});
|
});
|
||||||
|
|
||||||
nix-prefetch-github =
|
|
||||||
self.python3Packages.callPackage ./nix-prefetch-github.nix {};
|
|
||||||
}
|
}
|
||||||
|
@ -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 ];
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user