python3Packages.xdis: 4.0.1 -> 4.0.3

This commit is contained in:
Jonathan Ringer 2019-08-20 15:20:02 -07:00
parent bacf5619e2
commit 061b65489f

@ -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;