mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +00:00
218c4c526e
treewide: replace http by https when https is a permanent redirection
28 lines
536 B
Nix
28 lines
536 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "2.0.6";
|
|
pname = "pydispatcher";
|
|
|
|
src = fetchPypi {
|
|
pname = "PyDispatcher";
|
|
inherit version;
|
|
hash = "sha256-PX5PQ8cAAKHcox+SaU6Z0BAZNPpuq11UVadYhY2G35U=";
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pydispatcher.sourceforge.net/";
|
|
description = "Signal-registration and routing infrastructure for use in multiple contexts";
|
|
license = licenses.bsd3;
|
|
};
|
|
|
|
}
|