mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python3Packages.pyelftools: unstable-0.27 -> 0.27
This commit is contained in:
parent
bb96017198
commit
04af07c659
@ -1,18 +1,19 @@
|
||||
{ lib, stdenv
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, python
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyelftools";
|
||||
version = "unstable-2020-09-23";
|
||||
version = "0.27";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "eliben";
|
||||
repo = pname;
|
||||
rev = "ab84e68837113b2d700ad379d94c1dd4a73125ea";
|
||||
sha256 = "sha256-O7l1kj0k8bOSOtZJVzS674oVnM+X3oP00Ybs0qjb64Q=";
|
||||
rev = "v${version}";
|
||||
sha256 = "09igdym2qj2fvfcazbz25qybmgz7ccrn25xn3havfkdkka0z0i3p";
|
||||
};
|
||||
|
||||
doCheck = stdenv.is64bit && !stdenv.isDarwin;
|
||||
@ -25,10 +26,9 @@ buildPythonPackage rec {
|
||||
pythonImportsCheck = [ "elftools" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A library for analyzing ELF files and DWARF debugging information";
|
||||
description = "Python library for analyzing ELF files and DWARF debugging information";
|
||||
homepage = "https://github.com/eliben/pyelftools";
|
||||
license = licenses.publicDomain;
|
||||
maintainers = with maintainers; [ igsha pamplemousse ];
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user