python3Packages.scramp: init at 1.2.0
This commit is contained in:
parent
c9a550126b
commit
9b69c0881c
|
@ -0,0 +1,24 @@
|
|||
{ lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "scramp";
|
||||
version = "1.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tlocke";
|
||||
repo = "scramp";
|
||||
rev = version;
|
||||
sha256 = "15jb7z5l2lijxr60fb9v55i3f81h6d83c0b7fv5q0fv5q259nv0a";
|
||||
};
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "scramp" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Implementation of the SCRAM authentication protocol";
|
||||
homepage = "https://github.com/tlocke/scramp";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jonringer ];
|
||||
};
|
||||
}
|
|
@ -6450,6 +6450,8 @@ in {
|
|||
|
||||
scp = callPackage ../development/python-modules/scp { };
|
||||
|
||||
scramp = callPackage ../development/python-modules/scramp { };
|
||||
|
||||
scrapy = callPackage ../development/python-modules/scrapy { };
|
||||
|
||||
scrapy-deltafetch = callPackage ../development/python-modules/scrapy-deltafetch { };
|
||||
|
|
Loading…
Reference in New Issue