about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyrad/default.nix
blob: 67841cab7d9fc2473e62792a20bed96049848aaa (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
{ buildPythonPackage, fetchFromGitHub, lib, netaddr, six, nose }:

buildPythonPackage rec {
  pname = "pyrad";
  version = "2.4";

  src = fetchFromGitHub {
    owner = "pyradius";
    repo = pname;
    rev = version;
    sha256 = "sha256-oqgkE0xG/8cmLeRZdGoHkaHbjtByeJwzBJwEdxH8oNY=";
  };

  propagatedBuildInputs = [ netaddr six ];
  checkInputs = [ nose ];

  checkPhase = ''
    nosetests -e testBind
  '';

  pythonImportsCheck = [ "pyrad" ];

  meta = with lib; {
    description = "Python RADIUS Implementation";
    homepage = "https://bitbucket.org/zzzeek/sqlsoup";
    license = licenses.bsd3;
    maintainers = [ maintainers.globin ];
  };
}