{ lib , buildPythonPackage , fetchFromGitHub , simpleeval , pythonOlder , coveralls , wcmatch }: buildPythonPackage rec { pname = "casbin"; version = "1.15.2"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = pname; repo = "pycasbin"; rev = "v${version}"; sha256 = "0mrk6b16f4ds666qa4884kjjbmb55kpfvvqsznfmyg9iii6dir50"; }; propagatedBuildInputs = [ simpleeval wcmatch ]; checkInputs = [ coveralls ]; checkPhase = '' coverage run -m unittest discover -s tests -t tests ''; pythonImportsCheck = [ "casbin" ]; meta = with lib; { description = "An authorization library that supports access control models like ACL, RBAC, ABAC in Python"; homepage = "https://github.com/casbin/pycasbin"; license = licenses.asl20; maintainers = with maintainers; [ costrouc ]; }; }