···11+{ lib
22+, fetchPypi
33+, buildPythonPackage
44+}:
55+66+buildPythonPackage rec {
77+ pname = "about-time";
88+ version = "4.2.1";
99+1010+ # PyPi release does not contain test files, but the repo has no release tags,
1111+ # so while having no tests is not ideal, follow the PyPi releases for now
1212+ # TODO: switch to fetchFromGitHub once this issue is fixed:
1313+ # https://github.com/rsalmei/about-time/issues/15
1414+ src = fetchPypi {
1515+ inherit pname version;
1616+ hash = "sha256-alOIYtM85n2ZdCnRSZgxDh2/2my32bv795nEcJhH/s4=";
1717+ };
1818+1919+ doCheck = false;
2020+2121+ pythonImportsCheck = [
2222+ "about_time"
2323+ ];
2424+2525+ meta = with lib; {
2626+ description = "A cool helper for tracking time and throughput of code blocks, with beautiful human friendly renditions";
2727+ homepage = "https://github.com/rsalmei/about-time";
2828+ license = licenses.mit;
2929+ maintainers = with maintainers; [ thiagokokada ];
3030+ };
3131+}
···11{ lib
22, stdenv
33, fetchurl
44-, fetchpatch
54}:
6576stdenv.mkDerivation rec {
87 pname = "pv";
99- version = "1.6.20";
88+ version = "1.7.24";
1091110 src = fetchurl {
1212- url = "https://www.ivarch.com/programs/sources/pv-${version}.tar.bz2";
1313- sha256 = "00y6zla8h653sn4axgqz7rr0x79vfwl62a7gn6lzn607zwg9acg8";
1111+ url = "https://www.ivarch.com/programs/sources/pv-${version}.tar.gz";
1212+ sha256 = "sha256-O/Q8WAnI1QBm6urqWhFfZQPFejjBUZdbcQqivuhXtl4=";
1413 };
15141616- patches = [
1717- # Fix build on aarch64-darwin using patch from Homebrew
1818- (fetchpatch {
1919- url = "https://raw.githubusercontent.com/Homebrew/homebrew-core/0780f1df9fdbd8914ff50ac24eb0ec0d3561c1b7/Formula/pv.rb";
2020- sha256 = "001xayskfprri4s2gd3bqwajw6nz6nv0ggb0835par7q7bsd0dzr";
2121- })
2222- ];
2323-2415 meta = {
2525- homepage = "http://www.ivarch.com/programs/pv";
1616+ homepage = "https://www.ivarch.com/programs/pv.shtml";
2617 description = "Tool for monitoring the progress of data through a pipeline";
2718 license = lib.licenses.artistic2;
2828- maintainers = with lib.maintainers; [ ];
2929- platforms = with lib.platforms; all;
1919+ maintainers = with lib.maintainers; [ matthiasbeyer ];
2020+ platforms = lib.platforms.all;
3021 };
3122}
+2-2
pkgs/tools/security/galer/default.nix
···1111 owner = "dwisiswant0";
1212 repo = pname;
1313 rev = "v${version}";
1414- sha256 = "1923071rk078mqk5mig45kcrr58ni02rby3r298myld7j9gfnylb";
1414+ hash = "sha256-i3rrXpKnUV9REnn4lQWIFpWc2SzkxVomruiAmcMBQ6Q=";
1515 };
16161717- vendorSha256 = "0p5b6cp4ccvcjiy3g9brcwb08wxjbrpsza525fmx38wyyi0n0wns";
1717+ vendorHash = "sha256-2nJgQfSeo9GrK6Kor29esnMEFmd5pTd8lGwzRi4zq1w=";
18181919 meta = with lib; {
2020 description = "Tool to fetch URLs from HTML attributes";
+1-1
pkgs/tools/system/hddfancontrol/default.nix
···2828 meta = with lib; {
2929 description = "Dynamically control fan speed according to hard drive temperature on Linux";
3030 homepage = "https://github.com/desbma/hddfancontrol";
3131- license = licenses.gpl3;
3131+ license = licenses.gpl3Only;
3232 maintainers = with maintainers; [ benley ];
3333 };
3434}