nixpkgs/pkgs/development/python-modules/xdis/default.nix
2019-01-07 17:59:25 -05:00

32 lines
571 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, pytest
, six
, click
}:
buildPythonPackage rec {
pname = "xdis";
version = "3.8.9";
src = fetchPypi {
inherit pname version;
sha256 = "1q2dg3hnsmmpjcc7lzjf5nd041mpbwa2bq3dgr4p6wv65vncny9v";
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ six click ];
checkPhase = ''
make check
'';
meta = with stdenv.lib; {
description = "Python cross-version byte-code disassembler and marshal routines";
homepage = https://github.com/rocky/python-xdis/;
license = licenses.gpl2;
};
}