summary refs log tree commit diff
path: root/pkgs/development/python-modules/blinker/default.nix
blob: 441d1250e0a813bc582520859cfc1ad29ea5aa35 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, buildPythonPackage, fetchPypi }:

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

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

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