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





                        
                 
                    


                          
                                                                                





                                                                 
 






                                                          
{ stdenv
, buildPythonPackage
, fetchPypi
, python
}:
buildPythonPackage rec {
  pname = "plac";
  version = "1.1.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "398cb947c60c4c25e275e1f1dadf027e7096858fb260b8ece3b33bcff90d985f";
  };

  checkPhase = ''
      cd doc
      ${python.interpreter} -m unittest discover -p "*test_plac*"
    '';

  meta = with stdenv.lib; {
    description = "Parsing the Command Line the Easy Way";
    homepage = https://github.com/micheles/plac;
    license = licenses.bsdOriginal;
    maintainers = with maintainers; [ sdll ];
    };
}