Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f3c913d466f1
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3a87c1aabae3
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 15, 2018

  1. python.pkgs.pythonix: 0.1.0 -> 0.1.4

    also fix the build
    
    (cherry picked from commit 3f9d481)
    Mic92 committed Jun 15, 2018
    Copy the full SHA
    a2533e1 View commit details
  2. Merge pull request #42066 from Mic92/pythonix

    [18.03] python3.pkgs.pythonix: 0.1.0 -> 0.1.4
    Mic92 authored Jun 15, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3a87c1a View commit details
Showing with 11 additions and 7 deletions.
  1. +11 −7 pkgs/development/python-modules/pythonix/default.nix
18 changes: 11 additions & 7 deletions pkgs/development/python-modules/pythonix/default.nix
Original file line number Diff line number Diff line change
@@ -1,28 +1,32 @@
{ stdenv, fetchFromGitHub, ninja, meson, pkgconfig, nixUnstable, isPy3k }:
{ stdenv, fetchFromGitHub, ninja, boost, meson, pkgconfig, nix, isPy3k }:

assert isPy3k;

stdenv.mkDerivation rec {
name = "pythonix-${version}";
version = "0.1.0";
version = "0.1.4";

src = fetchFromGitHub {
owner = "Mic92";
repo = "pythonix";
rev = "v${version}";
sha256 = "1piblysypyr442a6najk4mdh87xc377i2fdbfw6fr569z60mnnnj";
sha256 = "1q1fagfwzvmcm1n3a0liay7m5krazmhw9l001m90rrz2x7vrsqwk";
};

nativeBuildInputs = [ meson pkgconfig ninja ];
disabled = !isPy3k;

buildInputs = [ nixUnstable ];
nativeBuildInputs = [ meson ninja pkgconfig ];

buildInputs = [ nix boost ];

checkPhase = ''
ninja test
'';

meta = with stdenv.lib; {
description = ''
Eval nix code from python.
'';
maintainers = [ maintainers.mic92 ];
license = licenses.mit;
platforms = platforms.linux;
};
}