mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.flask_ldap_login: Disable on python3
This commit is contained in:
parent
25f8753bf4
commit
b667a76eac
1 changed files with 2 additions and 1 deletions
|
@ -1,10 +1,11 @@
|
|||
{ stdenv, buildPythonPackage, fetchFromGitHub, fetchpatch
|
||||
{ stdenv, buildPythonPackage, isPy3k, fetchFromGitHub, fetchpatch
|
||||
, flask, flask_wtf, flask_testing, ldap
|
||||
, mock, nose }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "flask-ldap-login";
|
||||
version = "0.3.4";
|
||||
disabled = isPy3k;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ContinuumIO";
|
||||
|
|
Loading…
Reference in a new issue