mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
fahrplan: init at 1.1.2 (#349904)
This commit is contained in:
commit
35d1e7205e
36
pkgs/by-name/fa/fahrplan/package.nix
Normal file
36
pkgs/by-name/fa/fahrplan/package.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{
|
||||
lib,
|
||||
python3,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "fahrplan";
|
||||
version = "1.1.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dbrgn";
|
||||
repo = "fahrplan";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-2QVaA2zqqFuxjkKbDXo+SNzkrDCxXiSYMUOftQ++wO4=";
|
||||
};
|
||||
|
||||
build-system = with python3.pkgs; [
|
||||
setuptools
|
||||
];
|
||||
|
||||
dependencies = with python3.pkgs; [
|
||||
python-dateutil
|
||||
requests
|
||||
texttable
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Command line access to the SBB/CFF/FFS timetable with human readable argument parsing";
|
||||
homepage = "https://github.com/dbrgn/fahrplan";
|
||||
changelog = "https://github.com/dbrgn/fahrplan/blob/${src.rev}/CHANGELOG.md";
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [ p-h ];
|
||||
mainProgram = "fahrplan";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user