Merge pull request #33174 from Mic92/pythonix

python3Packages.pythonix: init at 0.1.0
This commit is contained in:
Jörg Thalheim 2017-12-29 17:49:34 +01:00 committed by GitHub
commit 805e25988f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv, fetchFromGitHub, ninja, meson, pkgconfig, gcc7, nixUnstable, isPy3k }:
assert isPy3k;
stdenv.mkDerivation rec {
name = "pythonix-${version}";
version = "0.1.0";
src = fetchFromGitHub {
owner = "Mic92";
repo = "pythonix";
rev = "v${version}";
sha256 = "1piblysypyr442a6najk4mdh87xc377i2fdbfw6fr569z60mnnnj";
};
nativeBuildInputs = [ meson pkgconfig ninja gcc7 ];
buildInputs = [ nixUnstable ];
meta = with stdenv.lib; {
description = ''
Eval nix code from python.
'';
maintainers = [ maintainers.mic92 ];
license = licenses.mit;
platforms = platforms.linux;
};
}

View file

@ -6646,6 +6646,8 @@ in {
};
};
pythonix = callPackage ../development/python-modules/pythonix { };
pypolicyd-spf = buildPythonPackage rec {
name = "pypolicyd-spf-${version}";
majorVersion = "2.0";