mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
pretalx.plugins.downstream: init at 1.2.0
This commit is contained in:
parent
3607e66f5a
commit
a2b0c5a8ad
30
pkgs/by-name/pr/pretalx/plugins/downstream.nix
Normal file
30
pkgs/by-name/pr/pretalx/plugins/downstream.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pretalx-downstream";
|
||||
version = "1.2.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pretalx";
|
||||
repo = "pretalx-downstream";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-MzoK/tzf6ajZ/THIXyad/tfb3lsQD9k9J6aBfoP9ONo=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
pythonImportsCheck = [ "pretalx_downstream" ];
|
||||
|
||||
meta = {
|
||||
description = "Use pretalx passively by importing another event's schedule";
|
||||
homepage = "https://github.com/pretalx/pretalx-downstream";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ wegank ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user