mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
19 lines
468 B
Nix
19 lines
468 B
Nix
{ 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; [ garbas ];
|
|
};
|
|
}
|