mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
pythonPackages.ntlm-auth: init at 1.0.3
This commit is contained in:
parent
594829ddfc
commit
663d369211
37
pkgs/development/python-modules/ntlm-auth/default.nix
Normal file
37
pkgs/development/python-modules/ntlm-auth/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ 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;
|
||||||
|
};
|
||||||
|
}
|
@ -234,6 +234,8 @@ in {
|
|||||||
|
|
||||||
nltk = callPackage ../development/python-modules/nltk.nix { };
|
nltk = callPackage ../development/python-modules/nltk.nix { };
|
||||||
|
|
||||||
|
ntlm-auth = callPackage ../development/python-modules/ntlm-auth { };
|
||||||
|
|
||||||
pitz = callPackage ../applications/misc/pitz { };
|
pitz = callPackage ../applications/misc/pitz { };
|
||||||
|
|
||||||
plantuml = callPackage ../tools/misc/plantuml { };
|
plantuml = callPackage ../tools/misc/plantuml { };
|
||||||
|
Loading…
Reference in New Issue
Block a user