pythonPackages.blinker: Move to own file
This commit is contained in:
committed by
Frederik Rietdijk
parent
03fa93875c
commit
c2eb722948
18
pkgs/development/python-modules/blinker/default.nix
Normal file
18
pkgs/development/python-modules/blinker/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user