08dbc60974
`requests' is no longer required per setup.cfg
30 lines
648 B
Nix
30 lines
648 B
Nix
{ python3
|
|
, fetchFromGitHub
|
|
, stdenv
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "nix-prefetch-github";
|
|
version = "2.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "seppeljordan";
|
|
repo = "nix-prefetch-github";
|
|
rev = "v${version}";
|
|
sha256 = "0b2hgfyxhlqq6lyi5cr98dz6if5kl6b3kq67f2lzfkalydywl1dh";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
attrs
|
|
click
|
|
effect
|
|
jinja2
|
|
];
|
|
meta = with stdenv.lib; {
|
|
description = "Prefetch sources from github";
|
|
homepage = https://github.com/seppeljordan/nix-prefetch-github;
|
|
license = licenses.gpl3;
|
|
maintainers = [ maintainers.seppeljordan ];
|
|
};
|
|
}
|