Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 17f6b50c56c1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 33935a883d0b
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Jan 5, 2021

  1. Verified

    This commit was signed with the committer’s verified signature.
    bagder Daniel Stenberg
    Copy the full SHA
    ed17f6a View commit details
  2. Merge pull request #108517 from fabaff/avea

    python3Packages.avea: init at 1.5.1
    SuperSandro2000 authored Jan 5, 2021

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    33935a8 View commit details
Showing with 34 additions and 0 deletions.
  1. +32 −0 pkgs/development/python-modules/avea/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
32 changes: 32 additions & 0 deletions pkgs/development/python-modules/avea/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, bluepy
}:

buildPythonPackage rec {
pname = "avea";
version = "1.5.1";

src = fetchFromGitHub {
owner = "k0rventen";
repo = pname;
rev = "v${version}";
sha256 = "13s21dnhbh10dd60xq2cklp5jyv46rpl3nivn1imcswp02930ihz";
};

propagatedBuildInputs = [
bluepy
];

# no tests are present
doCheck = false;
pythonImportsCheck = [ "avea" ];

meta = with lib; {
description = "Python module for interacting with Elgato's Avea bulb";
homepage = "https://github.com/k0rventen/avea";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -516,6 +516,8 @@ in {

av = callPackage ../development/python-modules/av { inherit (pkgs) pkgconfig; };

avea = callPackage ../development/python-modules/avea { };

avro3k = callPackage ../development/python-modules/avro3k { };

avro = callPackage ../development/python-modules/avro { };