nixpkgs/pkgs/development/python-modules/xdis/default.nix

32 lines
638 B
Nix
Raw Normal View History

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
, 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;
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-25 20:04:28 +02:00
checkInputs = [ pytest ];
propagatedBuildInputs = [ six click ];
2019-01-07 03:01:51 +01:00
checkPhase = ''
make check
'';
2019-08-21 00:20:02 +02:00
meta = with lib; {
description = "Python cross-version byte-code disassembler and marshal routines";
homepage = https://github.com/rocky/python-xdis/;
license = licenses.gpl2;
};
}