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

32 lines
584 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
2018-10-25 21:04:28 +03:00
, pytest
, six
2018-10-25 21:04:28 +03:00
, click
}:
buildPythonPackage rec {
pname = "xdis";
2019-04-16 20:15:42 +03:00
version = "3.8.10";
src = fetchPypi {
inherit pname version;
2019-04-16 20:15:42 +03:00
sha256 = "b00f37296edf2a4fe7b67b5d861c342426d442666d241674fdfc333936bd59bf";
};
2018-10-25 21:04:28 +03:00
checkInputs = [ pytest ];
propagatedBuildInputs = [ six click ];
2019-01-07 05:01:51 +03:00
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;
};
}