Skip to content

Commit

Permalink
pythonPackages.ntlm-auth: 1.0.3 -> 1.4.0 to fix build
Browse files Browse the repository at this point in the history
On master and 20.03, this is failing to build on `python 3.8`.

https://hydra.nixos.org/build/115517329
https://hydra.nixos.org/build/114714922

CC @NixOS/nixos-release-managers
ZHF: NixOS#80379

Co-Authored-By: Niklas Hambüchen <mail@nh2.me>
  • Loading branch information
bhipple and nh2 committed Mar 28, 2020
1 parent c2b0601 commit 97f09ff
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pkgs/development/python-modules/ntlm-auth/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,23 @@
, fetchFromGitHub
, mock
, pytest
, requests
, unittest2
, six
}:

buildPythonPackage rec {
pname = "ntlm-auth";
version = "1.0.3";
version = "1.4.0";

src = fetchFromGitHub {
owner = "jborean93";
repo = "ntlm-auth";
rev = "v${version}";
sha256 = "09f2g4ivfi9lh1kr30hlg0q4n2imnvmd79w83gza11q9nmhhiwpz";
sha256 = "168k3ygwbvnfcwn7q1nv3vvy6b9jc4cnpix0xgg5j8av7v1x0grn";
};

checkInputs = [ mock pytest unittest2 ];
checkInputs = [ mock pytest requests unittest2 ];
propagatedBuildInputs = [ six ];

# Functional tests require networking
Expand All @@ -28,8 +29,8 @@ buildPythonPackage rec {

meta = with lib; {
description = "Calculates NTLM Authentication codes";
homepage = https://github.com/jborean93/ntlm-auth;
license = licenses.lgpl3;
homepage = "https://github.com/jborean93/ntlm-auth";
license = licenses.mit;
maintainers = with maintainers; [ elasticdog ];
platforms = platforms.all;
};
Expand Down

0 comments on commit 97f09ff

Please sign in to comment.