linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / xdis / default.nix
blob3da25743594ea597cc9ca008166e98a5e93db30e
1 { lib, buildPythonPackage, fetchFromGitHub, isPy27
2 , click
3 , pytest
4 , six
5 }:
7 buildPythonPackage rec {
8   pname = "xdis";
9   version = "5.0.8";
10   disabled = isPy27;
12   src = fetchFromGitHub {
13     owner = "rocky";
14     repo = "python-xdis";
15     rev = version;
16     sha256 = "01g1bk7rscwmvr2i183z0y2bs1iw7bxk7c5rcf9gf25242nppv6a";
17   };
19   checkInputs = [ pytest ];
20   propagatedBuildInputs = [ six click ];
22   checkPhase = ''
23     make check
24   '';
25   pythonImportsCheck = [ "xdis" ];
27   meta = with lib; {
28     description = "Python cross-version byte-code disassembler and marshal routines";
29     homepage = "https://github.com/rocky/python-xdis/";
30     license = licenses.gpl2Plus;
31   };