nixpkgs/pkgs/development/python-modules/casbin/default.nix
2023-09-27 02:15:34 +00:00

45 lines
899 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, simpleeval
, wcmatch
}:
buildPythonPackage rec {
pname = "casbin";
version = "1.31.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = pname;
repo = "pycasbin";
rev = "refs/tags/v${version}";
hash = "sha256-hWKO64cx8lcErGWMPY2pDtvuO6xF1Ve+bLWhHnYL/ng=";
};
propagatedBuildInputs = [
simpleeval
wcmatch
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"casbin"
];
meta = with lib; {
description = "Authorization library that supports access control models like ACL, RBAC and ABAC";
homepage = "https://github.com/casbin/pycasbin";
changelog = "https://github.com/casbin/pycasbin/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}