4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
31 lines
824 B
Nix
31 lines
824 B
Nix
{ lib, stdenv, python, buildPythonPackage, isPy3k, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pymetar";
|
|
version = "1.1";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0y42l7mmp7jn4pzg66x3k57c6hqpxc22mgzgaqqpblkx2kzh42n9";
|
|
};
|
|
|
|
checkPhase = ''
|
|
cd testing/smoketest
|
|
tar xzf reports.tgz
|
|
mkdir logs
|
|
patchShebangs runtests.sh
|
|
substituteInPlace runtests.sh --replace "break" "exit 1" # fail properly
|
|
export PYTHONPATH="$PYTHONPATH:$out/${python.sitePackages}"
|
|
./runtests.sh
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A command-line tool to show the weather report by a given station ID";
|
|
homepage = "http://www.schwarzvogel.de/software/pymetar.html";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ erosennin ];
|
|
};
|
|
}
|