1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
47 lines
918 B
Nix
47 lines
918 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
django,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
python,
|
|
ua-parser,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-sesame";
|
|
version = "3.2.4";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aaugustin";
|
|
repo = "django-sesame";
|
|
tag = version;
|
|
hash = "sha256-q9LvsPyFEbaE/TEOlQ5WodVvzAiv4x7C4vaiz1RJLu4=";
|
|
};
|
|
|
|
nativeBuildInputs = [ poetry-core ];
|
|
|
|
nativeCheckInputs = [
|
|
django
|
|
ua-parser
|
|
];
|
|
|
|
pythonImportsCheck = [ "sesame" ];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
${python.interpreter} -m django test --settings=tests.settings
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = {
|
|
description = "URLs with authentication tokens for automatic login";
|
|
homepage = "https://github.com/aaugustin/django-sesame";
|
|
changelog = "https://github.com/aaugustin/django-sesame/blob/${version}/docs/changelog.rst";
|
|
license = lib.licenses.bsd3;
|
|
};
|
|
}
|