mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
39 lines
791 B
Nix
39 lines
791 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, gtfs-realtime-bindings
|
|
, requests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytransportnswv2";
|
|
version = "0.2.4";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
pname = "PyTransportNSWv2";
|
|
inherit version;
|
|
sha256 = "129rrqckqgfrwdx0b83dqphcv55cxs5i8jl1ascia7rpzjn109ah";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
gtfs-realtime-bindings
|
|
requests
|
|
];
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "TransportNSW" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python module to access Transport NSW information";
|
|
homepage = "https://github.com/andystewart999/TransportNSW";
|
|
license = with licenses; [ gpl3Only ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|