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

                        
                       
                    
 

                          
                                                                                












                                                       
{ stdenv, buildPythonPackage, python, fetchPypi}:

buildPythonPackage rec {
  pname = "fastimport";
  version = "0.9.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "b2f2e8eb97000256e1aab83d2a0a053fc7b93c3aa4f7e9b971a5703dfc5963b9";
  };

  checkPhase = ''
    ${python.interpreter} -m unittest discover
  '';

  meta = with stdenv.lib; {
    homepage = https://launchpad.net/python-fastimport;
    description = "VCS fastimport/fastexport parser";
    maintainers = with maintainers; [ koral ];
    license = licenses.gpl2Plus;
  };
}