summary refs log blame commit diff
path: root/pkgs/development/python-modules/xdis/default.nix
blob: d120f17780b20723d76c7f36312f0a3bdd9b63cf (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                  
       
        




                        
                    
                    
 



                         
                                                                    

    


                                        


                 
 
                    

                                                                                     
                            


    
{ lib, buildPythonPackage, fetchFromGitHub, isPy27
, click
, pytest
, six
}:

buildPythonPackage rec {
  pname = "xdis";
  version = "4.1.2";
  disabled = isPy27;

  src = fetchFromGitHub {
    owner = "rocky";
    repo = "python-xdis";
    rev = version;
    sha256 = "0icqhafsnmcs6628cg3jjgq0d3x835nqmhljcz93yi457hfqd2lp";
  };

  checkInputs = [ pytest ];
  propagatedBuildInputs = [ six click ];

  checkPhase = ''
    make check
  '';

  meta = with lib; {
    description = "Python cross-version byte-code disassembler and marshal routines";
    homepage = https://github.com/rocky/python-xdis/;
    license = licenses.gpl2;
  };

}