pythonPackages.mwoauth: init at 0.3.2
This commit is contained in:
parent
a67f4753ea
commit
e2487ba88d
31
pkgs/development/python-modules/mwoauth/default.nix
Normal file
31
pkgs/development/python-modules/mwoauth/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, six
|
||||||
|
, pyjwt
|
||||||
|
, requests
|
||||||
|
, oauthlib
|
||||||
|
, requests_oauthlib
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "mwoauth";
|
||||||
|
version = "0.3.2";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1krqz755415z37z1znrc77vi4xyp5ys6fnq4zwcwixjjbzddpavj";
|
||||||
|
};
|
||||||
|
|
||||||
|
# package has no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ six pyjwt requests oauthlib requests_oauthlib ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A library designed to provide a simple means to performing an OAuth handshake with a MediaWiki installation with the OAuth Extension installed.";
|
||||||
|
homepage = https://github.com/mediawiki-utilities/python-mwoauth;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ ixxie ];
|
||||||
|
};
|
||||||
|
}
|
@ -243,6 +243,8 @@ in {
|
|||||||
mpi = pkgs.openmpi;
|
mpi = pkgs.openmpi;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
mwoauth = callPackage ../development/python-modules/mwoauth { };
|
||||||
|
|
||||||
neuron = pkgs.neuron.override {
|
neuron = pkgs.neuron.override {
|
||||||
inherit python;
|
inherit python;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user