nixpkgs/pkgs/development/python-modules/blinker/default.nix

22 lines
557 B
Nix
Raw Normal View History

2021-02-19 15:13:19 +00:00
{ lib, buildPythonPackage, fetchPypi, nose, pytestCheckHook }:
buildPythonPackage rec {
pname = "blinker";
version = "1.4";
src = fetchPypi {
inherit pname version;
sha256 = "1dpq0vb01p36jjwbhhd08ylvrnyvcc82yxx3mwjx6awrycjyw6j7";
};
2021-02-19 15:13:19 +00:00
checkInputs = [ nose pytestCheckHook ];
pythonImportsCheck = [ "blinker" ];
meta = with lib; {
homepage = "https://pythonhosted.org/blinker/";
description = "Fast, simple object-to-object and broadcast signaling";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}