Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 468 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "blinker"; 5 version = "1.4"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1dpq0vb01p36jjwbhhd08ylvrnyvcc82yxx3mwjx6awrycjyw6j7"; 10 }; 11 12 meta = with stdenv.lib; { 13 homepage = https://pythonhosted.org/blinker/; 14 description = "Fast, simple object-to-object and broadcast signaling"; 15 license = licenses.mit; 16 maintainers = with maintainers; [ garbas ]; 17 }; 18}