Files
nixpkgs/pkgs/development/python-modules/pythonix/default.nix
T

33 lines
638 B
Nix
Raw Normal View History

2018-06-15 11:52:08 +01:00
{ stdenv, fetchFromGitHub, ninja, boost, meson, pkgconfig, nix, isPy3k }:
2017-12-29 17:38:05 +01:00
stdenv.mkDerivation rec {
name = "pythonix-${version}";
2018-06-15 11:52:08 +01:00
version = "0.1.4";
2017-12-29 17:38:05 +01:00
src = fetchFromGitHub {
owner = "Mic92";
repo = "pythonix";
rev = "v${version}";
2018-06-15 11:52:08 +01:00
sha256 = "1q1fagfwzvmcm1n3a0liay7m5krazmhw9l001m90rrz2x7vrsqwk";
2017-12-29 17:38:05 +01:00
};
2018-06-15 11:52:08 +01:00
disabled = !isPy3k;
2017-12-29 17:38:05 +01:00
2018-06-15 11:52:08 +01:00
nativeBuildInputs = [ meson ninja pkgconfig ];
buildInputs = [ nix boost ];
checkPhase = ''
ninja test
'';
2017-12-29 17:38:05 +01:00
meta = with stdenv.lib; {
description = ''
Eval nix code from python.
'';
maintainers = [ maintainers.mic92 ];
license = licenses.mit;
};
}