pythonPackages.oauth: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-17 14:38:14 -04:00
committed by Frederik Rietdijk
parent a543d4236e
commit bc1c971ef4
2 changed files with 25 additions and 18 deletions

View File

@@ -0,0 +1,24 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "oauth";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "0pdgi35hczsslil4890xqawnbpdazkgf2v1443847h5hy2gq2sg7";
};
# No tests included in archive
doCheck = false;
meta = with stdenv.lib; {
homepage = http://code.google.com/p/oauth;
description = "Library for OAuth version 1.0a";
license = licenses.mit;
};
}