504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
24 lines
607 B
Nix
24 lines
607 B
Nix
{ lib, buildPythonPackage, fetchPypi, flask, blinker, nose }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flask-principal";
|
|
version = "0.4.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
pname = "Flask-Principal";
|
|
inherit version;
|
|
hash = "sha256-9dYTS1yuv9u4bzLVbRjuRLCAh2onJpVgqW6jX3XJlFM=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ flask blinker ];
|
|
|
|
nativeCheckInputs = [ nose ];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://packages.python.org/Flask-Principal/";
|
|
description = "Identity management for flask";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|