pythonPackages.blinker: Move to own file
This commit is contained in:
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 ];
|
||||
};
|
||||
}
|
@ -1289,22 +1289,7 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
blinker = buildPythonPackage rec {
|
||||
name = "blinker-${version}";
|
||||
version = "1.4";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/b/blinker/${name}.tar.gz";
|
||||
sha256 = "1dpq0vb01p36jjwbhhd08ylvrnyvcc82yxx3mwjx6awrycjyw6j7";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://pythonhosted.org/blinker/;
|
||||
description = "Fast, simple object-to-object and broadcast signaling";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ garbas ];
|
||||
};
|
||||
};
|
||||
blinker = callPackage ../development/python-modules/blinker { };
|
||||
|
||||
blockdiag = callPackage ../development/python-modules/blockdiag { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user