pythonPackages.blinker: Move to own file

This commit is contained in:
Elis Hirwing
2018-03-31 13:11:43 +02:00
committed by Frederik Rietdijk
parent 03fa93875c
commit c2eb722948
2 changed files with 19 additions and 16 deletions

View File

@@ -0,0 +1,18 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "blinker";
version = "1.4";
src = fetchPypi {
inherit pname version;
sha256 = "1dpq0vb01p36jjwbhhd08ylvrnyvcc82yxx3mwjx6awrycjyw6j7";
};
meta = with stdenv.lib; {
homepage = http://pythonhosted.org/blinker/;
description = "Fast, simple object-to-object and broadcast signaling";
license = licenses.mit;
maintainers = with maintainers; [ garbas ];
};
}