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









                                                                    


                                         
                    
                                                   

                                                                          
                                        

    
{ lib, buildPythonPackage, fetchPypi, nose, pytestCheckHook }:

buildPythonPackage rec {
  pname = "blinker";
  version = "1.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1dpq0vb01p36jjwbhhd08ylvrnyvcc82yxx3mwjx6awrycjyw6j7";
  };

  checkInputs = [ nose pytestCheckHook ];
  pythonImportsCheck = [ "blinker" ];

  meta = with lib; {
    homepage = "https://pythonhosted.org/blinker/";
    description = "Fast, simple object-to-object and broadcast signaling";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}