Merge pull request #67133 from jonringer/fix-xdis

python3Packages.xdis: 4.0.1 -> 4.0.3
This commit is contained in:
Lancelot SIX 2019-08-21 19:57:36 +02:00 committed by GitHub
commit 27d0689e60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +1,18 @@
{ stdenv { lib, buildPythonPackage, fetchFromGitHub
, buildPythonPackage , click
, fetchPypi
, pytest , pytest
, six , six
, click
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "xdis"; pname = "xdis";
version = "4.0.1"; version = "4.0.3";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "rocky";
sha256 = "1ifakxxawyxw4w4p58m4xdc0c955miqyaq3dfbl386ipw0f50kyz"; repo = "python-xdis";
rev = version;
sha256 = "1h4j8hincf49zyd0rvn4bh0ypj8836y8vz3d496ycb9gjzkr6044";
}; };
checkInputs = [ pytest ]; checkInputs = [ pytest ];
@ -22,7 +22,7 @@ buildPythonPackage rec {
make check make check
''; '';
meta = with stdenv.lib; { meta = with lib; {
description = "Python cross-version byte-code disassembler and marshal routines"; description = "Python cross-version byte-code disassembler and marshal routines";
homepage = https://github.com/rocky/python-xdis/; homepage = https://github.com/rocky/python-xdis/;
license = licenses.gpl2; license = licenses.gpl2;