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: ac2d736b3ad8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c5ed4a8b2902
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Oct 28, 2019

  1. pythonPackages.py3buddy: cleanup, call toPythonModule

    prusnak authored and Jon committed Oct 28, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c5ed4a8 View commit details
Showing with 5 additions and 5 deletions.
  1. +4 −4 pkgs/development/python-modules/py3buddy/default.nix
  2. +1 −1 pkgs/top-level/python-packages.nix
8 changes: 4 additions & 4 deletions pkgs/development/python-modules/py3buddy/default.nix
Original file line number Diff line number Diff line change
@@ -22,17 +22,17 @@ stdenv.mkDerivation rec {
dontCheck = true;

installPhase = ''
install -D py3buddy.py $out/lib/${python.libPrefix}/site-packages/py3buddy.py
install -D py3buddy.py $out/${python.sitePackages}/py3buddy.py
'';

postInstall = ''
install -D 99-ibuddy.rules $out/lib/udev/rules.d/99-ibuddy.rules
'';

meta = {
meta = with stdenv.lib; {
description = "Code to work with the iBuddy MSN figurine";
homepage = "https://github.com/armijnhemel/py3buddy";
license = with stdenv.lib.licenses; [ mit ];
maintainers = with stdenv.lib.maintainers; [ prusnak ];
license = with licenses; [ mit ];
maintainers = with maintainers; [ prusnak ];
};
}
2 changes: 1 addition & 1 deletion pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -906,7 +906,7 @@ in {

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

py3buddy = callPackage ../development/python-modules/py3buddy { };
py3buddy = toPythonModule (callPackage ../development/python-modules/py3buddy { });

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