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

                    
                 



                        
                    

                   

                                                                    

    



                   
                    

                                                                            
                                                     


    
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "testpath";
  version = "0.5.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "05z4s4d5i1ja16hiv4jhqv63fvg1a4vw77s0ay1sw11hrl5pmkqs";
  };

  checkInputs = [
    pytestCheckHook
  ];

  meta = with lib; {
    description = "Test utilities for code working with files and commands";
    license = licenses.mit;
    homepage = "https://github.com/jupyter/testpath";
  };

}