python310Packages.casbin: 1.16.9 -> 1.17.0

This commit is contained in:
Fabian Affolter 2022-08-08 22:13:27 +02:00
parent 55ce48fc2b
commit 575bab3e78

View File

@ -1,15 +1,15 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, simpleeval
, pytestCheckHook
, pythonOlder
, coveralls
, simpleeval
, wcmatch
}:
buildPythonPackage rec {
pname = "casbin";
version = "1.16.9";
version = "1.17.0";
format = "setuptools";
disabled = pythonOlder "3.6";
@ -18,7 +18,7 @@ buildPythonPackage rec {
owner = pname;
repo = "pycasbin";
rev = "refs/tags/v${version}";
sha256 = "sha256-1xxjFNkCb50ndmXuRjt7svPOvSyzZbw+J49Zpyy1FUc=";
hash = "sha256-fBMhrA4zL4XPjQ63AGc5jf585ZpHTBumPievDNfCw7o=";
};
propagatedBuildInputs = [
@ -27,19 +27,15 @@ buildPythonPackage rec {
];
checkInputs = [
coveralls
pytestCheckHook
];
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";
description = "Authorization library that supports access control models like ACL, RBAC and ABAC";
homepage = "https://github.com/casbin/pycasbin";
license = licenses.asl20;
maintainers = with maintainers; [ costrouc ];