My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pygtfs/default.nix

50 lines
770 B

{ lib
, buildPythonPackage
, docopt
, fetchPypi
, nose
, pytz
, pythonOlder
, setuptools-scm
, six
, sqlalchemy
}:
buildPythonPackage rec {
pname = "pygtfs";
version = "0.1.7";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-sGJwtf8DVIrE4hcU3IksnyAAt8yf67UBJIiVILDSsv8=";
};
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
docopt
pytz
six
sqlalchemy
];
checkInputs = [
nose
];
pythonImportsCheck = [
"pygtfs"
];
meta = with lib; {
description = "Python module for GTFS";
homepage = "https://github.com/jarondl/pygtfs";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}