mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
66e059559a
This reverts commit 51d9995d04
.
Wrong hash, see https://github.com/NixOS/nixpkgs/issues/26320.
38 lines
808 B
Nix
38 lines
808 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, mock
|
|
, pytest
|
|
, unittest2
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ntlm-auth";
|
|
version = "1.0.3";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jborean93";
|
|
repo = "ntlm-auth";
|
|
rev = "v${version}";
|
|
sha256 = "09f2g4ivfi9lh1kr30hlg0q4n2imnvmd79w83gza11q9nmhhiwpz";
|
|
};
|
|
|
|
checkInputs = [ mock pytest unittest2 ];
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
# Functional tests require networking
|
|
checkPhase = ''
|
|
py.test --ignore=tests/functional/test_iis.py
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Calculates NTLM Authentication codes";
|
|
homepage = https://github.com/jborean93/ntlm-auth;
|
|
license = licenses.lgpl3;
|
|
maintainers = with maintainers; [ elasticdog ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|