python3Packages.pyelftools: unstable-0.27 -> 0.27

This commit is contained in:
Fabian Affolter 2021-01-15 07:26:07 +01:00 committed by Jonathan Ringer
parent bb96017198
commit 04af07c659

View File

@ -1,18 +1,19 @@
{ lib, stdenv { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, python , python
, stdenv
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyelftools"; pname = "pyelftools";
version = "unstable-2020-09-23"; version = "0.27";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "eliben"; owner = "eliben";
repo = pname; repo = pname;
rev = "ab84e68837113b2d700ad379d94c1dd4a73125ea"; rev = "v${version}";
sha256 = "sha256-O7l1kj0k8bOSOtZJVzS674oVnM+X3oP00Ybs0qjb64Q="; sha256 = "09igdym2qj2fvfcazbz25qybmgz7ccrn25xn3havfkdkka0z0i3p";
}; };
doCheck = stdenv.is64bit && !stdenv.isDarwin; doCheck = stdenv.is64bit && !stdenv.isDarwin;
@ -25,10 +26,9 @@ buildPythonPackage rec {
pythonImportsCheck = [ "elftools" ]; pythonImportsCheck = [ "elftools" ];
meta = with lib; { 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"; homepage = "https://github.com/eliben/pyelftools";
license = licenses.publicDomain; license = licenses.publicDomain;
maintainers = with maintainers; [ igsha pamplemousse ]; maintainers = with maintainers; [ igsha pamplemousse ];
}; };
} }