mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
pythonPackages.sanic-auth: init at 0.2.0
This commit is contained in:
parent
c6ec7b613a
commit
ebf837e07f
26
pkgs/development/python-modules/sanic-auth/default.nix
Normal file
26
pkgs/development/python-modules/sanic-auth/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi, pytest, sanic }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "Sanic-Auth";
|
||||||
|
version = "0.2.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "b7cb9e93296c035ada0aa1ebfb33f9f7b62f7774c519e374b7fe703ff73589cb";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ sanic ];
|
||||||
|
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
pytest tests
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Simple Authentication for Sanic";
|
||||||
|
homepage = "https://github.com/pyx/sanic-auth/";
|
||||||
|
license = licenses.bsdOriginal;
|
||||||
|
maintainers = [ maintainers.arnoldfarkas ];
|
||||||
|
};
|
||||||
|
}
|
@ -1347,6 +1347,8 @@ in {
|
|||||||
|
|
||||||
salmon-mail = callPackage ../development/python-modules/salmon-mail { };
|
salmon-mail = callPackage ../development/python-modules/salmon-mail { };
|
||||||
|
|
||||||
|
sanic-auth = callPackage ../development/python-modules/sanic-auth { };
|
||||||
|
|
||||||
seekpath = callPackage ../development/python-modules/seekpath { };
|
seekpath = callPackage ../development/python-modules/seekpath { };
|
||||||
|
|
||||||
selectors2 = callPackage ../development/python-modules/selectors2 { };
|
selectors2 = callPackage ../development/python-modules/selectors2 { };
|
||||||
|
Loading…
Reference in New Issue
Block a user