2019-10-27 02:41:41 +02:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub, isPy27
|
2019-08-21 00:20:02 +02:00
|
|
|
, click
|
2018-10-25 20:04:28 +02:00
|
|
|
, pytest
|
2018-10-16 23:03:41 +02:00
|
|
|
, six
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "xdis";
|
2020-01-07 14:17:29 +01:00
|
|
|
version = "4.2.2";
|
2019-10-27 02:41:41 +02:00
|
|
|
disabled = isPy27;
|
2018-10-16 23:03:41 +02:00
|
|
|
|
2019-08-21 00:20:02 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rocky";
|
|
|
|
repo = "python-xdis";
|
|
|
|
rev = version;
|
2020-01-07 14:17:29 +01:00
|
|
|
sha256 = "0d286myx6z6cbih77h8z5p9vscxvww3gy59lmi1w6y2nq6c8sqzb";
|
2018-10-16 23:03:41 +02:00
|
|
|
};
|
|
|
|
|
2018-10-25 20:04:28 +02:00
|
|
|
checkInputs = [ pytest ];
|
|
|
|
propagatedBuildInputs = [ six click ];
|
|
|
|
|
2019-01-07 03:01:51 +01:00
|
|
|
checkPhase = ''
|
|
|
|
make check
|
|
|
|
'';
|
2018-10-16 23:03:41 +02:00
|
|
|
|
2019-08-21 00:20:02 +02:00
|
|
|
meta = with lib; {
|
2018-10-16 23:03:41 +02:00
|
|
|
description = "Python cross-version byte-code disassembler and marshal routines";
|
|
|
|
homepage = https://github.com/rocky/python-xdis/;
|
2018-11-16 17:59:37 +01:00
|
|
|
license = licenses.gpl2;
|
2018-10-16 23:03:41 +02:00
|
|
|
};
|
|
|
|
}
|