about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/versionfinder/default.nix
blob: 69d77551fcd342d4e94860242094900a0fdf40f5 (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
{ lib, buildPythonPackage, fetchFromGitHub, GitPython, pytestCheckHook, backoff, requests }:

buildPythonPackage rec {
  pname = "versionfinder";
  version = "1.1.1";

  src = fetchFromGitHub {
    owner = "jantman";
    repo = pname;
    rev = version;
    sha256 = "16mvjwyhmw39l8by69dgr9b9jnl7yav36523lkh7w7pwd529pbb9";
  };

  propagatedBuildInputs = [
    GitPython
    backoff
  ];

  checkInputs = [
    pytestCheckHook
    requests
  ];

  disabledTestPaths = [
    # acceptance tests use the network
    "versionfinder/tests/test_acceptance.py"
  ];

  pythonImportsCheck = [ "versionfinder" ];

  meta = with lib; {
    description = "Find the version of another package, whether installed via pip, setuptools or git";
    homepage = "https://github.com/jantman/versionfinder";
    license = licenses.agpl3Plus;
    maintainers = with maintainers; [ zakame ];
  };
}