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

                    
                 
                 
  
 

                        
                  
                       
 




                                                                    



                   

    
                        









                                                      
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "multimethod";
  version = "1.6";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "coady";
    repo = pname;
    rev = "v${version}";
    sha256 = "09vrxzv8q0lqsbh6d83wjdd29ja66rj31y7wmyha14jk603fd9k0";
  };

  checkInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "multimethod"
  ];

  meta = with lib; {
    description = "Multiple argument dispatching";
    homepage = "https://github.com/coady/multimethod";
    license = licenses.asl20;
    maintainers = teams.determinatesystems.members;
  };
}