python3Packages.gbinder-python: Init at 1.0.0
This commit is contained in:
parent
0aeb28e566
commit
7f9f26f942
39
pkgs/development/python-modules/gbinder-python/default.nix
Normal file
39
pkgs/development/python-modules/gbinder-python/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, buildPythonPackage
|
||||
, cython
|
||||
, pkg-config
|
||||
, libgbinder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "gbinder-python";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "erfanoabdi";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0jgblzakjgsy0cj93bmh5gr7qnl2xgsrm0wzc6xjvzry9lrbs360";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
libgbinder
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
cython
|
||||
pkg-config
|
||||
];
|
||||
|
||||
setupPyGlobalFlags = [ "--cython" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python bindings for libgbinder";
|
||||
homepage = "https://github.com/erfanoabdi/gbinder-python";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ mcaju ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -2882,6 +2882,8 @@ in {
|
||||
|
||||
garages-amsterdam = callPackage ../development/python-modules/garages-amsterdam { };
|
||||
|
||||
gbinder-python = callPackage ../development/python-modules/gbinder-python { };
|
||||
|
||||
gcovr = callPackage ../development/python-modules/gcovr { };
|
||||
|
||||
gcsfs = callPackage ../development/python-modules/gcsfs { };
|
||||
|
Loading…
Reference in New Issue
Block a user