Compare commits
No commits in common. "979c113fc4f135e0552e244b6c080221f9491b27" and "5b975b9895275a508b148d3b49a81a81a1dc1005" have entirely different histories.
979c113fc4
...
5b975b9895
2 changed files with 0 additions and 90 deletions
|
@ -1,47 +0,0 @@
|
||||||
{
|
|
||||||
lib,
|
|
||||||
buildPythonPackage,
|
|
||||||
fetchFromGitHub,
|
|
||||||
setuptools,
|
|
||||||
wheel,
|
|
||||||
flake8,
|
|
||||||
lxml,
|
|
||||||
python-cas,
|
|
||||||
requests,
|
|
||||||
django,
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
|
||||||
pname = "django-cas-ng";
|
|
||||||
version = "5.0.1";
|
|
||||||
pyproject = true;
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "django-cas-ng";
|
|
||||||
repo = "django-cas-ng";
|
|
||||||
rev = "v${version}";
|
|
||||||
hash = "sha256-jGoros8HbSWCtWvw2ilttm0MtWtEZDUy5KWNfczJvWk=";
|
|
||||||
};
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
setuptools
|
|
||||||
wheel
|
|
||||||
];
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
|
||||||
flake8
|
|
||||||
lxml
|
|
||||||
python-cas
|
|
||||||
requests
|
|
||||||
django
|
|
||||||
];
|
|
||||||
|
|
||||||
# pythonImportsCheck = [ "django_cas_ng" ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Django CAS 1.0/2.0/3.0 client authentication library, support Django 2.0, 2.1, 2.2, 3.0 and Python 3.5";
|
|
||||||
homepage = "https://github.com/django-cas-ng/django-cas-ng";
|
|
||||||
license = licenses.mit;
|
|
||||||
maintainers = with maintainers; [ ];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,43 +0,0 @@
|
||||||
{
|
|
||||||
lib,
|
|
||||||
buildPythonPackage,
|
|
||||||
fetchFromGitHub,
|
|
||||||
setuptools,
|
|
||||||
wheel,
|
|
||||||
lxml,
|
|
||||||
requests,
|
|
||||||
six,
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
|
||||||
pname = "python-cas";
|
|
||||||
version = "1.6.0";
|
|
||||||
pyproject = true;
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "python-cas";
|
|
||||||
repo = "python-cas";
|
|
||||||
rev = "v${version}";
|
|
||||||
hash = "sha256-0lpjG/Sma0tJGtahiFE1CjvTyswrBUp+F6f1S65b+lk=";
|
|
||||||
};
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
setuptools
|
|
||||||
wheel
|
|
||||||
];
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
|
||||||
lxml
|
|
||||||
requests
|
|
||||||
six
|
|
||||||
];
|
|
||||||
|
|
||||||
pythonImportsCheck = [ "cas" ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Python CAS (Central Authentication Service) client library support CAS 1.0/2.0/3.0";
|
|
||||||
homepage = "https://github.com/python-cas/python-cas";
|
|
||||||
license = licenses.mit;
|
|
||||||
maintainers = with maintainers; [ ];
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue