depot/third_party/nixpkgs/pkgs/development/python-modules/pymetar/default.nix

42 lines
911 B
Nix
Raw Normal View History

{
lib,
python,
buildPythonPackage,
isPy3k,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "pymetar";
version = "1.4";
pyproject = true;
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
hash = "sha256-SNvmxJKZYQIcth5Ju54GBbVMS2G5+5reUQdnBaCOzVQ=";
};
build-system = [ setuptools ];
checkPhase = ''
cd testing/smoketest
tar xzf reports.tgz
mkdir logs
patchShebangs runtests.sh
substituteInPlace runtests.sh --replace-fail "break" "exit 1" # fail properly
export PYTHONPATH="$PYTHONPATH:$out/${python.sitePackages}"
./runtests.sh
'';
meta = with lib; {
description = "Command-line tool to show the weather report by a given station ID";
mainProgram = "pymetar";
homepage = "https://github.com/klausman/pymetar";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ erosennin ];
};
}