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