nixpkgs/pkgs/development/python-modules/flask-session/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

28 lines
814 B
Nix

{ lib, fetchPypi, buildPythonPackage, pytestCheckHook, flask, cachelib }:
buildPythonPackage rec {
pname = "Flask-Session";
version = "0.4.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-ye1UMh+oxMoBMv/TNpWCdZ7aclL7SzvuSA5pDRukH0Y=";
};
propagatedBuildInputs = [ flask cachelib ];
nativeCheckInputs = [ pytestCheckHook ];
# The rest of the tests require database servers and optional db connector dependencies
pytestFlagsArray = [ "-k" "'null_session or filesystem_session'" ];
pythonImportsCheck = [ "flask_session" ];
meta = with lib; {
description = "A Flask extension that adds support for server-side sessions";
homepage = "https://github.com/fengsp/flask-session";
license = licenses.bsd3;
maintainers = with maintainers; [ zhaofengli ];
};
}