feat(init): init
This commit is contained in:
commit
8aa38a77b1
3 changed files with 95 additions and 0 deletions
5
overlay.nix
Normal file
5
overlay.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
self: super: with super.lib;
|
||||
mapAttrs' (name: _: rec {
|
||||
value = super.callPackages ("./pkgs/${name}") { };
|
||||
name = removeSuffix ".nix" name;
|
||||
}) (builtins.readDir ./pkgs)
|
47
pkgs/django-cas-ng.nix
Normal file
47
pkgs/django-cas-ng.nix
Normal file
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
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; [ ];
|
||||
};
|
||||
}
|
43
pkgs/python-cas.nix
Normal file
43
pkgs/python-cas.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
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 = [ "python_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…
Reference in a new issue