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
22 lines
641 B
Nix
22 lines
641 B
Nix
{ lib, stdenv, buildPythonPackage, fetchFromGitHub }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "PyTado";
|
|
version = "0.2.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wmalgadey";
|
|
repo = pname;
|
|
# Upstream hasn't tagged this release yet. This commit fixes the build.
|
|
rev = "79a5dfdf75cd9a3e1a1ee8a8ff0d08923aebda7b";
|
|
sha256 = "14xdfw4913g4j4h576hjbigm7fiw8k0dc8s98gh2ag9xrc2ifgr0";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Python binding for Tado web API. Pythonize your central heating!";
|
|
homepage = "https://github.com/wmalgadey/PyTado";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ elseym ];
|
|
};
|
|
}
|