python3Packages.dlinfo: init at 1.2.1
This commit is contained in:
parent
e33498fb74
commit
dd9827019f
2 changed files with 39 additions and 0 deletions
37
pkgs/development/python-modules/dlinfo/default.nix
Normal file
37
pkgs/development/python-modules/dlinfo/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, setuptools-scm
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "dlinfo";
|
||||
version = "1.2.1";
|
||||
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "5f6f43b47f3aa5fe12bd347cf536dc8fca6068c61a0a260e408bec7f6eb4bd38";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "dlinfo" ];
|
||||
|
||||
meta = {
|
||||
description = "Python wrapper for libc's dlinfo and dyld_find on Mac";
|
||||
homepage = "https://github.com/cloudflightio/python-dlinfo";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
}
|
|
@ -2426,6 +2426,8 @@ in {
|
|||
inherit (pkgs) dlib;
|
||||
};
|
||||
|
||||
dlinfo = callPackage ../development/python-modules/dlinfo { };
|
||||
|
||||
dlx = callPackage ../development/python-modules/dlx { };
|
||||
|
||||
dmenu-python = callPackage ../development/python-modules/dmenu { };
|
||||
|
|
Loading…
Reference in a new issue