3
0
Fork 0
forked from mirrors/nixpkgs

python.pkgs.adal : move to separate expression

This commit is contained in:
wisut hantanong 2017-07-19 16:04:59 +07:00
parent c21e915c97
commit 68bcf522c7
2 changed files with 23 additions and 18 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, buildPythonPackage, fetchPypi
, requests, pyjwt }:
buildPythonPackage rec {
pname = "adal";
version = "0.1.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1f32k18ck54adqlgvh6fjhy4yavcyrwy813prjyqppqqq4bn1a09";
};
propagatedBuildInputs = [ requests pyjwt ];
meta = with stdenv.lib; {
description = "Library to make it easy for python application to authenticate to Azure Active Directory (AAD) in order to access AAD protected web resources";
homepage = https://github.com/AzureAD/azure-activedirectory-library-for-python;
license = licenses.mit;
maintainers = with maintainers; [ phreedom ];
};
}

View file

@ -274,24 +274,7 @@ in {
actdiag = callPackage ../development/python-modules/actdiag { };
adal = buildPythonPackage rec {
version = "0.1.0";
name = "adal-${version}";
src = pkgs.fetchurl {
url = mirror://pypi/a/adal/adal-0.1.0.tar.gz;
sha256 = "1f32k18ck54adqlgvh6fjhy4yavcyrwy813prjyqppqqq4bn1a09";
};
propagatedBuildInputs = with self; [ requests pyjwt ];
meta = {
description = "Library to make it easy for python application to authenticate to Azure Active Directory (AAD) in order to access AAD protected web resources";
homepage = https://github.com/AzureAD/azure-activedirectory-library-for-python;
license = licenses.mit;
maintainers = with maintainers; [ phreedom ];
};
};
adal = callPackage ../development/python-modules/adal { };
afew = buildPythonPackage rec {
name = "afew-git-2017-02-08";