summary refs log tree commit diff
path: root/pkgs/development/python-modules/nix-prefetch-github/default.nix
blob: 0821e0b763d088263e1513c4dd6b5bccb9e359b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ fetchFromGitHub
, lib
, buildPythonPackage
, attrs
, click
, effect
, git
, pytestCheckHook
, pytest-cov
, pythonOlder
}:

buildPythonPackage rec {
  pname = "nix-prefetch-github";
  version = "4.0.4";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "seppeljordan";
    repo = "nix-prefetch-github";
    rev = "v${version}";
    sha256 = "g5G818Gq5EGyRIyg/ZW7guxMS0IyJ4nYaRjG/CtGhuc=";
  };

  propagatedBuildInputs = [
    attrs
    click
    effect
  ];

  checkInputs = [ pytestCheckHook pytest-cov git ];

  # ignore tests which are impure
  disabledTests = [ "network" "requires_nix_build" ];

  meta = with lib; {
    description = "Prefetch sources from github";
    homepage = "https://github.com/seppeljordan/nix-prefetch-github";
    license = licenses.gpl3;
    maintainers = with maintainers; [ seppeljordan ];
  };
}