python3Packages.pythonix: init at 0.1.0
This commit is contained in:
parent
e2fe111d46
commit
7e20ba9515
28
pkgs/development/python-modules/pythonix/default.nix
Normal file
28
pkgs/development/python-modules/pythonix/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -6646,6 +6646,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
pythonix = callPackage ../development/python-modules/pythonix { };
|
||||
|
||||
pypolicyd-spf = buildPythonPackage rec {
|
||||
name = "pypolicyd-spf-${version}";
|
||||
majorVersion = "2.0";
|
||||
|
Loading…
Reference in New Issue
Block a user